You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but HIDE still tries to use "res" as the path for cdb.
The reason I ask is I am trying to utilize HIDE in a Godot project, which is a weird combo I know, mostly because I really like the functionality/mod-ability of HIDE as well as castleDB. Godot's internal path structure is "res://" but it isn't externally accessible that way so my structure would look like "res://res/" which hurts my eyes. lol
I also didn't see it as an option in defaultProps.json
The text was updated successfully, but these errors were encountered:
I was wondering if there was an easy way to change where HIDE looks for Resources?
I adjusted DataFiles.hx to read from "data" instead of "res":
static dynamic function getPath(file:String) { #if (editor || cdb_datafiles) return Ide.inst.getPath(file); #else return "data/"+file; #end }
but HIDE still tries to use "res" as the path for cdb.
The reason I ask is I am trying to utilize HIDE in a Godot project, which is a weird combo I know, mostly because I really like the functionality/mod-ability of HIDE as well as castleDB. Godot's internal path structure is "res://" but it isn't externally accessible that way so my structure would look like "res://res/" which hurts my eyes. lol
I also didn't see it as an option in defaultProps.json
The text was updated successfully, but these errors were encountered: