small description improvement

This commit is contained in:
Juan Linietsky 2015-05-17 17:19:12 -03:00
parent b6b346e8ae
commit 12bd89a39c
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -280,3 +280,4 @@ cscope.files
cscope.out cscope.out
cscope.in.out cscope.in.out
cscope.po.out cscope.po.out
godot.creator.user.wd3476

View File

@ -1094,11 +1094,11 @@ void SceneTree::_bind_methods() {
ObjectTypeDB::bind_native_method(METHOD_FLAGS_DEFAULT,"call_group",&SceneTree::_call_group,mi,defargs); ObjectTypeDB::bind_native_method(METHOD_FLAGS_DEFAULT,"call_group",&SceneTree::_call_group,mi,defargs);
ObjectTypeDB::bind_method(_MD("set_current_scene","child_node"),&SceneTree::set_current_scene); ObjectTypeDB::bind_method(_MD("set_current_scene","child_node:Node"),&SceneTree::set_current_scene);
ObjectTypeDB::bind_method(_MD("get_current_scene"),&SceneTree::get_current_scene); ObjectTypeDB::bind_method(_MD("get_current_scene:Node"),&SceneTree::get_current_scene);
ObjectTypeDB::bind_method(_MD("change_scene","path"),&SceneTree::change_scene); ObjectTypeDB::bind_method(_MD("change_scene","path"),&SceneTree::change_scene);
ObjectTypeDB::bind_method(_MD("change_scene_to","packed_scene"),&SceneTree::change_scene_to); ObjectTypeDB::bind_method(_MD("change_scene_to","packed_scene:PackedScene"),&SceneTree::change_scene_to);
ObjectTypeDB::bind_method(_MD("reload_current_scene"),&SceneTree::reload_current_scene); ObjectTypeDB::bind_method(_MD("reload_current_scene"),&SceneTree::reload_current_scene);