Exemplo n.º 1
0
        public static UAssetFileBlueprint OpenFile(FileStream fs, bool isDebugEnabled, string classname, string rootPath)
        {
            UAssetFileBlueprint f = new UAssetFileBlueprint();

            f.ReadFile(fs, isDebugEnabled, classname, rootPath);
            return(f);
        }
Exemplo n.º 2
0
 public UAssetFileBlueprint GetReferencedUAssetBlueprintFromPathname(string pathname)
 {
     UAssetFileBlueprint bp = new UAssetFileBlueprint();
     BaseGetReferencedUAssetBaseFromPathname(bp, pathname);
     return bp;
 }
Exemplo n.º 3
0
        public UAssetFileBlueprint OpenUAssetWithSameSettings(string path, string classname)
        {
            UAssetFileBlueprint f = UAssetFileBlueprint.OpenFile(path, isDebugModeEnabled, classname, rootPath);

            return(f);
        }