Stop() public method

public Stop ( ) : void
return void
コード例 #1
0
 static public void StopCoroutine(EditorCoroutine pCoroutine)
 {
     if (pCoroutine != null)
     {
         pCoroutine.Stop();
     }
 }
コード例 #2
0
ファイル: GUIGifDrawer.cs プロジェクト: SeanTongTx/SeanLib
 public void Stop()
 {
     if (playing != null)
     {
         playing.Stop();
         playing = null;
     }
 }
コード例 #3
0
ファイル: GUIGifDrawer.cs プロジェクト: SeanTongTx/SeanLib
 public void Clean()
 {
     Stop();
     if (decoding != null)
     {
         decoding.Stop();
         decoding = null;
     }
     if (Currrent)
     {
         GameObject.DestroyImmediate(Currrent);
         Currrent = null;
     }
     textures.Clear();
     Index = 0;
     if (img != null)
     {
         img.Dispose();
         img = null;
     }
 }