コード例 #1
0
ファイル: CZip.cs プロジェクト: zhaoke2015/FinalFramework
        public static CZip Create()
        {
            var gameObj = new GameObject("ZipObject");

            uZip = gameObj.AddComponent <CZip>();
            return(uZip);
        }
コード例 #2
0
ファイル: CZip.cs プロジェクト: zhaoke2015/FinalFramework
 public void OnDispose()
 {
     mZips.Clear();
     if (uZip != null)
     {
         GameObject.Destroy(uZip.gameObject);
     }
     uZip = null;
 }