You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Updated function argument names
This commit is contained in:
@@ -147,12 +147,12 @@ void TileSetEditor::_import_node(Node *p_node, Ref<TileSet> p_library) {
|
||||
}
|
||||
}
|
||||
|
||||
void TileSetEditor::_import_scene(Node *scene, Ref<TileSet> p_library, bool p_merge) {
|
||||
void TileSetEditor::_import_scene(Node *p_scene, Ref<TileSet> p_library, bool p_merge) {
|
||||
|
||||
if (!p_merge)
|
||||
p_library->clear();
|
||||
|
||||
_import_node(scene, p_library);
|
||||
_import_node(p_scene, p_library);
|
||||
}
|
||||
|
||||
void TileSetEditor::_menu_confirm() {
|
||||
|
||||
Reference in New Issue
Block a user