bright-gpu-74537
10/02/2019, 2:35 PMbright-gpu-74537
10/02/2019, 2:35 PMhaxe
try {
resolvedPath = Context.resolvePath(r.path);
} catch (e:Dynamic) {
resolvedPath = haxe.io.Path.join([Sys.getCwd(), r.path]);
}
if (FileSystem.isDirectory(resolvedPath) && FileSystem.exists(resolvedPath)) {
addResources(resolvedPath, resolvedPath, r.prefix);
} else {
trace("WARNING: Could not find path " + resolvedPath);
}
user
10/02/2019, 2:38 PMuser
10/02/2019, 2:38 PMbright-gpu-74537
10/02/2019, 2:39 PMuser
10/02/2019, 2:40 PMbright-gpu-74537
10/02/2019, 2:42 PMbright-gpu-74537
10/02/2019, 2:43 PMhaxe
var resolvedPath = null;
try {
resolvedPath = Context.resolvePath(dir);
} catch (e:Dynamic) {
resolvedPath = haxe.io.Path.join([Sys.getCwd(), dir]);
}
if (resolvedPath == null || FileSystem.exists(resolvedPath) == false) {
trace("WARNING: Could not find path " + resolvedPath);
}
dir = resolvedPath;
bright-gpu-74537
10/02/2019, 2:43 PMbright-gpu-74537
10/02/2019, 2:43 PMhaxe
var resolvedPath = null;
try {
resolvedPath = Context.resolvePath(filePath);
} catch (e:Dynamic) {
resolvedPath = haxe.io.Path.join([Sys.getCwd(), filePath]);
}
if (resolvedPath == null || FileSystem.exists(resolvedPath) == false) {
trace("WARNING: Could not find path " + resolvedPath);
}
filePath = resolvedPath;
bright-gpu-74537
10/02/2019, 2:43 PMuser
10/02/2019, 2:44 PMbright-gpu-74537
10/02/2019, 2:44 PMuser
10/02/2019, 2:48 PMbright-gpu-74537
10/02/2019, 2:49 PMuser
10/02/2019, 2:50 PMbright-gpu-74537
10/02/2019, 2:50 PMbright-gpu-74537
10/02/2019, 2:50 PMuser
10/02/2019, 2:52 PMbright-gpu-74537
10/02/2019, 2:53 PM"c:.temp.dummy_haxelib.assets.morecustomcomponents" is not a valid package name:[
bright-gpu-74537
10/02/2019, 2:53 PMuser
10/02/2019, 2:53 PMbright-gpu-74537
10/02/2019, 2:55 PMbright-gpu-74537
10/02/2019, 2:55 PMuser
10/02/2019, 2:56 PMvar resolvedPath = null;
try {
resolvedPath = Context.resolvePath(c.classFolder);
} catch (e:Dynamic) {
for(i in m.resourceEntries){
if(c.classFolder == i.prefix){
resolvedPath = Context.resolvePath(i.path);
break;
}
}
}
if (resolvedPath == null || FileSystem.exists(resolvedPath) == false) {
trace("WARNING: Could not find path " + resolvedPath);
}
createDynamicClasses(resolvedPath);
bright-gpu-74537
10/02/2019, 2:58 PMbright-gpu-74537
10/02/2019, 2:58 PMuser
10/02/2019, 2:59 PMuser
10/02/2019, 3:02 PMbright-gpu-74537
10/02/2019, 3:03 PM