mirror of
https://github.com/godotengine/godot.git
synced 2025-10-28 20:24:41 +00:00
Change "ID" to lowercase "id"
Reasoning: ID is not an acronym, it is simply short for identification, so it logically should not be capitalized. But even if it was an acronym, other acronyms in Godot are not capitalized, like p_rid, p_ip, and p_json.
This commit is contained in:
parent
84058ab8ac
commit
702b539405
24 changed files with 130 additions and 130 deletions
|
|
@ -68,8 +68,8 @@ public class GodotLib {
|
|||
public static native void singleton(String p_name, Object p_object);
|
||||
public static native void method(String p_sname, String p_name, String p_ret, String[] p_params);
|
||||
public static native String getGlobal(String p_key);
|
||||
public static native void callobject(int p_ID, String p_method, Object[] p_params);
|
||||
public static native void calldeferred(int p_ID, String p_method, Object[] p_params);
|
||||
public static native void callobject(int p_id, String p_method, Object[] p_params);
|
||||
public static native void calldeferred(int p_id, String p_method, Object[] p_params);
|
||||
public static native void requestPermissionResult(String p_permission, boolean p_result);
|
||||
|
||||
public static native void setVirtualKeyboardHeight(int p_height);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue