Пример #1
0
        /** constructor
         */
        public PathItem(AssetBundlePathType a_assetbundle_pathtype, Fee.File.Path a_assetbundle_path)
        {
            //assetbundle_pathtype
            this.assetbundle_pathtype = a_assetbundle_pathtype;

            //assetbundle_path
            this.assetbundle_path = a_assetbundle_path;
        }
Пример #2
0
 /** パスアイテム。登録。
  */
 public void Regist(string a_assetbundle_name, AssetBundlePathType a_assetbundle_pathtype, Fee.File.Path a_assetbundle_path)
 {
     if (this.path_list.ContainsKey(a_assetbundle_name) == false)
     {
         this.path_list.Add(a_assetbundle_name, new PathItem(a_assetbundle_pathtype, a_assetbundle_path));
     }
     else
     {
         Tool.Assert(false);
     }
 }
Пример #3
0
 /** パスアイテム。登録。
  *
  *      アセットバンドルのパス。アセットバンドル名を設定する。
  *
  */
 public void RegistPathItem(string a_assetbundle_name, AssetBundlePathType a_assetbundle_pathtype, Fee.File.Path a_path)
 {
     this.pathlist.Regist(a_assetbundle_name, a_assetbundle_pathtype, a_path);
 }