Animator.Start C# (CSharp) Méthode

Start() public méthode

public Start ( ) : void
Résultat void
    void Start()
    {
        startTime = Time.time;
    }

Usage Example

Exemple #1
0
        //================================================================
        //Getter and Setter
        //================================================================

        //================================================================
        //Methodes
        //================================================================
        #region
        public void Animation()
        {
            animation.Start();
            if (StartAnimation != null)
            {
                StartAnimation(this);
            }
        }
All Usage Examples Of Animator::Start