コード例 #1
0
ファイル: AutoAssetDestroy.cs プロジェクト: uiopsczc/Test
		private void OnDestroy()
		{
			if (assetCat != null)
				assetCat.SubRefCount(1, true);
			else
				LogCat.LogErrorFormat("{0} destroy but ont find assetCat", name);
		}
コード例 #2
0
ファイル: AssetCatDisposable.cs プロジェクト: uiopsczc/Test
        public void ReleasePreAssetCat()
        {
            if (preAssetCat != null)
            {
                if (!preAssetCat.IsLoadSuccess())
                {
                    preAssetCat.RemoveCallback(this);
                }
                preAssetCat.SubRefCount(1, true);
            }

            preAssetPath = null;
            preAssetCat  = null;
        }
コード例 #3
0
ファイル: AssetCatDisposable.cs プロジェクト: uiopsczc/Test
        public void ReleaseCurAssetCat()
        {
            if (curAssetCat != null)
            {
                if (!curAssetCat.IsLoadSuccess())
                {
                    curAssetCat.RemoveCallback(this);
                }
                curAssetCat.SubRefCount(1, true);
            }

            curAssetPath = null;
            curAssetCat  = null;
        }
コード例 #4
0
 public void Destroy()
 {
     refCount = 0;
     assetCat.SubRefCount(1, true);
 }