You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
481 B
14 lines
481 B
MergeJSFiles(new string[] {
|
|
GetDecompressor(),
|
|
Paths.Combine(buildToolsDir, "UnityConfig"),
|
|
Paths.Combine(args.stagingAreaData, kOutputFileLoaderFileName),
|
|
}, unityLoader
|
|
);
|
|
|
|
|
|
throw new System.Exception(
|
|
"'Fast Rebuild' option requires prebuilt JavaScript version of Unity engine. The following files are missing: "
|
|
+ (!File.Exists(UnityNativeJs) ? "\n" + UnityNativeJs : "")
|
|
+ (!File.Exists(UnityNativeJs + ".mem") ? "\n" + UnityNativeJs + ".mem" : "")
|
|
);
|