fix gdscript path parse error

This commit is contained in:
sanikoyes 2014-03-11 13:30:33 +08:00
parent 101112d6fd
commit cde48d0c9c
1 changed files with 1 additions and 0 deletions

View File

@ -215,6 +215,7 @@ GDParser::Node* GDParser::_parse_expression(Node *p_parent,bool p_static,bool p_
String path = tokenizer->get_token_constant();
if (!path.is_abs_path() && base_path!="")
path=base_path+"/"+path;
path = path.replace("///","//");
Ref<Resource> res = ResourceLoader::load(path);
if (!res.is_valid()) {