public override void RecordAsset(IAssetUser asset) { if (_assets.ContainsKey(asset.IdAsString) == false) { _assets.Add(asset.IdAsString, new AssetFile(asset)); } }
public XRefSceneRecord(IAssetUser asset, int index) { this.index = index; this.Asset = asset; this.sceneRoot = MaxInterfaces.COREInterface.RootNode; }
public IAssetUser Assign(IAssetUser assetU) { throw new NotImplementedException(); }
public AssetFile(IAssetUser asset) { Id = asset.IdAsString ?? ""; FullFilePath = asset.FullFilePath ?? ""; FileName = asset.FileName ?? ""; }