// Token: 0x06001926 RID: 6438 RVA: 0x0008D127 File Offset: 0x0008B527
 public AssetDirectory(string newName, AssetDirectory newParent)
 {
     this.name        = newName;
     this.parent      = newParent;
     this.assets      = new List <Asset>();
     this.directories = new List <AssetDirectory>();
 }
 // Token: 0x06001946 RID: 6470 RVA: 0x0008D32C File Offset: 0x0008B72C
 public ScannedFileInfo(string name, string assetPath, string dataPath, string bundlePath, bool dataUsePath, bool bundleUsePath, bool loadFromResources, bool canUse, AssetDirectory directory, EAssetOrigin origin, bool overrideExistingIDs)
 {
     this.name                = name;
     this.assetPath           = assetPath;
     this.dataPath            = dataPath;
     this.bundlePath          = bundlePath;
     this.dataUsePath         = dataUsePath;
     this.bundleUsePath       = bundleUsePath;
     this.loadFromResources   = loadFromResources;
     this.canUse              = canUse;
     this.directory           = directory;
     this.origin              = origin;
     this.overrideExistingIDs = overrideExistingIDs;
 }
Beispiel #3
0
 public ScannedFileInfo(string name, string assetPath, string dataPath, string bundlePath, bool dataUsePath, bool bundleUsePath, bool loadFromResources, AssetDirectory directory, EAssetOrigin origin)
 {
     this.name              = name;
     this.assetPath         = assetPath;
     this.dataPath          = dataPath;
     this.bundlePath        = bundlePath;
     this.dataUsePath       = dataUsePath;
     this.bundleUsePath     = bundleUsePath;
     this.loadFromResources = loadFromResources;
     this.directory         = directory;
     this.origin            = origin;
 }