BigBadGuy.Pause C# (CSharp) Méthode

Pause() public méthode

public Pause ( bool isPause ) : void
isPause bool
Résultat void
    public void Pause (bool isPause)
    {
        if (isPause && null != _iTP && _iTP.IsInvoking ()) {
            iTween.Pause (gameObject);
        } else if (!isPause && null != _iTP && !_iTP.IsInvoking ()) {
            iTween.Resume (gameObject);
        }
    }