BigBadGuy.Pause C# (CSharp) 메소드

Pause() 공개 메소드

public Pause ( bool isPause ) : void
isPause bool
리턴 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);
        }
    }