public void Start()
        {
            // If not using an explicit scale value
            if (ExplicitScale.Equals(DEFAULT_SCALE_VALUE))
            {
                if (IsNearestPlanet)
                {
                    ChangeToNearestRadius();
                }
                else
                {
                    ChangeToSolarSystemRadius();
                }
            }

            ShouldUpdatePosition       = (PlanetNumber != OrbitingBody.SUN);
            ShouldUpdateRotation       = Maths.has_rotation_data();
            transform.localEulerAngles = Maths.default_rotation_tilt_euler_angle;
        }