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