mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Fix inconsistent internal name of get_resource_filesystem
This commit is contained in:
parent
825ef2387f
commit
d80b9887dd
2 changed files with 3 additions and 3 deletions
|
@ -75,7 +75,7 @@ EditorCommandPalette *EditorInterface::get_command_palette() const {
|
||||||
return EditorCommandPalette::get_singleton();
|
return EditorCommandPalette::get_singleton();
|
||||||
}
|
}
|
||||||
|
|
||||||
EditorFileSystem *EditorInterface::get_resource_file_system() const {
|
EditorFileSystem *EditorInterface::get_resource_filesystem() const {
|
||||||
return EditorFileSystem::get_singleton();
|
return EditorFileSystem::get_singleton();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -778,7 +778,7 @@ void EditorInterface::_bind_methods() {
|
||||||
// Editor tools.
|
// Editor tools.
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("get_command_palette"), &EditorInterface::get_command_palette);
|
ClassDB::bind_method(D_METHOD("get_command_palette"), &EditorInterface::get_command_palette);
|
||||||
ClassDB::bind_method(D_METHOD("get_resource_filesystem"), &EditorInterface::get_resource_file_system);
|
ClassDB::bind_method(D_METHOD("get_resource_filesystem"), &EditorInterface::get_resource_filesystem);
|
||||||
ClassDB::bind_method(D_METHOD("get_editor_paths"), &EditorInterface::get_editor_paths);
|
ClassDB::bind_method(D_METHOD("get_editor_paths"), &EditorInterface::get_editor_paths);
|
||||||
ClassDB::bind_method(D_METHOD("get_resource_previewer"), &EditorInterface::get_resource_previewer);
|
ClassDB::bind_method(D_METHOD("get_resource_previewer"), &EditorInterface::get_resource_previewer);
|
||||||
ClassDB::bind_method(D_METHOD("get_selection"), &EditorInterface::get_selection);
|
ClassDB::bind_method(D_METHOD("get_selection"), &EditorInterface::get_selection);
|
||||||
|
|
|
@ -101,7 +101,7 @@ public:
|
||||||
// Editor tools.
|
// Editor tools.
|
||||||
|
|
||||||
EditorCommandPalette *get_command_palette() const;
|
EditorCommandPalette *get_command_palette() const;
|
||||||
EditorFileSystem *get_resource_file_system() const;
|
EditorFileSystem *get_resource_filesystem() const;
|
||||||
EditorPaths *get_editor_paths() const;
|
EditorPaths *get_editor_paths() const;
|
||||||
EditorResourcePreview *get_resource_previewer() const;
|
EditorResourcePreview *get_resource_previewer() const;
|
||||||
EditorSelection *get_selection() const;
|
EditorSelection *get_selection() const;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue