Platform.Activate C# (CSharp) 메소드

Activate() 공개 메소드

public Activate ( ) : void
리턴 void
    public void Activate()
    {
        StartDelayOn = true;
    }

Usage Example

예제 #1
0
    public void Push()
    {
        if (this.GetComponent <Animation> ())
        {
            this.GetComponent <Animation>().Play();
        }

        if (platform)
        {
            platform.Activate();
        }
    }
All Usage Examples Of Platform::Activate