Ejemplo n.º 1
0
 //ファイルのロードを上書きするコールバックを登録
 void Awake()
 {
     AssetFileManager.GetCustomLoadManager().OnFindAsset += FindAsset;
 }
        private void Awake()
        {
            CustomLoadManager customLoadManager = AssetFileManager.GetCustomLoadManager();

            customLoadManager.OnFindAsset = (Utage.CustomLoadManager.FindAsset)Delegate.Combine(customLoadManager.OnFindAsset, new Utage.CustomLoadManager.FindAsset(this.FindAsset));
        }