Example #1
0
 public AssetReq(string assetPathName, ProcLvl procLvl = ProcLvl.DoLoading, bool bCaching = true)
 {
     PathName    = assetPathName;
     Prs         = AssetPRS.Zero;
     ProcLevel   = procLvl;
     NeedCaching = bCaching;
 }
Example #2
0
 public AssetReq(string assetPathName, AssetPRS assetPos, ProcLvl procLvl = ProcLvl.DoInstantiation, bool bCaching = true)
 {
     PathName    = assetPathName;
     Prs         = assetPos;
     ProcLevel   = procLvl;
     NeedCaching = bCaching;
 }
Example #3
0
 public void Deactivate()
 {
     ProcLevel = ProcLvl.DoNothing;
 }