Exemplo n.º 1
0
 void EndLoop()
 {
     if (_instance == null)
     {
         return;
     }
     _instance.Finish();
     _instance = null;
 }
Exemplo n.º 2
0
    public void Release()
    {
        if (_loopInstance == null)
        {
            return;
        }

        _loopInstance.Finish();
        _loopInstance = null;
    }