You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fixes
-=-=-= -Added missing quaternion constructor -code completion fixes -winrt fixes
This commit is contained in:
@@ -12,9 +12,9 @@ Ref<ResourceInteractiveLoader> _ResourceLoader::load_interactive(const String& p
|
||||
return ResourceLoader::load_interactive(p_path,p_type_hint);
|
||||
}
|
||||
|
||||
RES _ResourceLoader::load(const String &p_path,const String& p_type_hint) {
|
||||
RES _ResourceLoader::load(const String &p_path,const String& p_type_hint, bool p_no_cache) {
|
||||
|
||||
RES ret = ResourceLoader::load(p_path,p_type_hint);
|
||||
RES ret = ResourceLoader::load(p_path,p_type_hint, p_no_cache);
|
||||
return ret;
|
||||
}
|
||||
|
||||
@@ -59,7 +59,7 @@ void _ResourceLoader::_bind_methods() {
|
||||
|
||||
|
||||
ObjectTypeDB::bind_method(_MD("load_interactive:ResourceInteractiveLoader","path","type_hint"),&_ResourceLoader::load_interactive,DEFVAL(""));
|
||||
ObjectTypeDB::bind_method(_MD("load:Resource","path","type_hint"),&_ResourceLoader::load,DEFVAL(""));
|
||||
ObjectTypeDB::bind_method(_MD("load:Resource","path","type_hint", "p_no_cache"),&_ResourceLoader::load,DEFVAL(""), DEFVAL(false));
|
||||
ObjectTypeDB::bind_method(_MD("get_recognized_extensions_for_type","type"),&_ResourceLoader::get_recognized_extensions_for_type);
|
||||
ObjectTypeDB::bind_method(_MD("set_abort_on_missing_resources","abort"),&_ResourceLoader::set_abort_on_missing_resources);
|
||||
ObjectTypeDB::bind_method(_MD("get_dependencies"),&_ResourceLoader::get_dependencies);
|
||||
|
||||
Reference in New Issue
Block a user