OpenMetaverse.AgentManager.Fly C# (CSharp) Méthode

Fly() public méthode

Starts or stops flying
public Fly ( bool start ) : void
start bool True to start flying, false to stop flying
Résultat void
        public void Fly(bool start)
        {
            if (start)
                Movement.Fly = true;
            else
                Movement.Fly = false;

            Movement.SendUpdate(true);
        }