You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Makes all Godot API's methods Lower Case
This commit is contained in:
@@ -183,7 +183,7 @@ ObjectID EditorHistory::get_current() {
|
||||
if (!obj)
|
||||
return 0;
|
||||
|
||||
return obj->get_instance_ID();
|
||||
return obj->get_instance_id();
|
||||
}
|
||||
|
||||
int EditorHistory::get_path_size() const {
|
||||
@@ -208,7 +208,7 @@ ObjectID EditorHistory::get_path_object(int p_index) const {
|
||||
if (!obj)
|
||||
return 0;
|
||||
|
||||
return obj->get_instance_ID();
|
||||
return obj->get_instance_id();
|
||||
}
|
||||
|
||||
String EditorHistory::get_path_property(int p_index) const {
|
||||
|
||||
Reference in New Issue
Block a user