From a2ecf96e048b9dcb88689235b02c22b6df6eccdb Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Fri, 26 Aug 2022 21:12:55 +0530 Subject: [PATCH] Update extension_api.ci.json after TypedArray changes upstream --- extension_api.ci.json | 1534 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 1481 insertions(+), 53 deletions(-) diff --git a/extension_api.ci.json b/extension_api.ci.json index caac351..ac1de50 100644 --- a/extension_api.ci.json +++ b/extension_api.ci.json @@ -4232,6 +4232,19 @@ }, { "name": "floor", + "return_type": "Variant", + "category": "math", + "is_vararg": false, + "hash": 4776452, + "arguments": [ + { + "name": "x", + "type": "Variant" + } + ] + }, + { + "name": "floorf", "return_type": "float", "category": "math", "is_vararg": false, @@ -4243,8 +4256,34 @@ } ] }, + { + "name": "floori", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 2780425386, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, { "name": "ceil", + "return_type": "Variant", + "category": "math", + "is_vararg": false, + "hash": 4776452, + "arguments": [ + { + "name": "x", + "type": "Variant" + } + ] + }, + { + "name": "ceilf", "return_type": "float", "category": "math", "is_vararg": false, @@ -4256,8 +4295,34 @@ } ] }, + { + "name": "ceili", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 2780425386, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, { "name": "round", + "return_type": "Variant", + "category": "math", + "is_vararg": false, + "hash": 4776452, + "arguments": [ + { + "name": "x", + "type": "Variant" + } + ] + }, + { + "name": "roundf", "return_type": "float", "category": "math", "is_vararg": false, @@ -4269,6 +4334,19 @@ } ] }, + { + "name": "roundi", + "return_type": "int", + "category": "math", + "is_vararg": false, + "hash": 2780425386, + "arguments": [ + { + "name": "x", + "type": "float" + } + ] + }, { "name": "abs", "return_type": "Variant", @@ -4495,6 +4573,27 @@ }, { "name": "lerp", + "return_type": "Variant", + "category": "math", + "is_vararg": false, + "hash": 3389874542, + "arguments": [ + { + "name": "from", + "type": "Variant" + }, + { + "name": "to", + "type": "Variant" + }, + { + "name": "weight", + "type": "Variant" + } + ] + }, + { + "name": "lerpf", "return_type": "float", "category": "math", "is_vararg": false, @@ -11089,6 +11188,20 @@ } ] }, + { + "name": "rotated_local", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 729597514, + "arguments": [ + { + "name": "angle", + "type": "float" + } + ] + }, { "name": "scaled", "return_type": "Transform2D", @@ -11103,6 +11216,34 @@ } ] }, + { + "name": "scaled_local", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1446323263, + "arguments": [ + { + "name": "scale", + "type": "Vector2" + } + ] + }, + { + "name": "translated", + "return_type": "Transform2D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1446323263, + "arguments": [ + { + "name": "offset", + "type": "Vector2" + } + ] + }, { "name": "translated_local", "return_type": "Transform2D", @@ -11577,6 +11718,74 @@ } ] }, + { + "name": "cubic_interpolate", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 726768410, + "arguments": [ + { + "name": "b", + "type": "Vector4" + }, + { + "name": "pre_a", + "type": "Vector4" + }, + { + "name": "post_b", + "type": "Vector4" + }, + { + "name": "weight", + "type": "float" + } + ] + }, + { + "name": "posmod", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3129671720, + "arguments": [ + { + "name": "mod", + "type": "float" + } + ] + }, + { + "name": "posmodv", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2031281584, + "arguments": [ + { + "name": "modv", + "type": "Vector4" + } + ] + }, + { + "name": "snapped", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2031281584, + "arguments": [ + { + "name": "step", + "type": "Vector4" + } + ] + }, { "name": "clamp", "return_type": "Vector4", @@ -11611,6 +11820,34 @@ "is_static": false, "hash": 3918633141 }, + { + "name": "direction_to", + "return_type": "Vector4", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 2031281584, + "arguments": [ + { + "name": "to", + "type": "Vector4" + } + ] + }, + { + "name": "distance_to", + "return_type": "float", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 3770801042, + "arguments": [ + { + "name": "to", + "type": "Vector4" + } + ] + }, { "name": "dot", "return_type": "float", @@ -12066,6 +12303,11 @@ "right_type": "Plane", "return_type": "bool" }, + { + "name": "*", + "right_type": "Transform3D", + "return_type": "Plane" + }, { "name": "in", "right_type": "Dictionary", @@ -13552,6 +13794,11 @@ "right_type": "Vector3", "return_type": "Vector3" }, + { + "name": "*", + "right_type": "Plane", + "return_type": "Plane" + }, { "name": "*", "right_type": "AABB", @@ -13631,6 +13878,24 @@ } ] }, + { + "name": "rotated_local", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1563203923, + "arguments": [ + { + "name": "axis", + "type": "Vector3" + }, + { + "name": "angle", + "type": "float" + } + ] + }, { "name": "scaled", "return_type": "Transform3D", @@ -13645,6 +13910,34 @@ } ] }, + { + "name": "scaled_local", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1405596198, + "arguments": [ + { + "name": "scale", + "type": "Vector3" + } + ] + }, + { + "name": "translated", + "return_type": "Transform3D", + "is_vararg": false, + "is_const": true, + "is_static": false, + "hash": 1405596198, + "arguments": [ + { + "name": "offset", + "type": "Vector3" + } + ] + }, { "name": "translated_local", "return_type": "Transform3D", @@ -27097,7 +27390,11 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 711530217, + "hash": 1985425300, + "return_value": { + "type": "int", + "meta": "int32" + }, "arguments": [ { "name": "track_idx", @@ -34203,7 +34500,7 @@ "hash": 2586408642, "arguments": [ { - "name": "arg0", + "name": "enabled", "type": "bool" } ] @@ -67235,7 +67532,7 @@ "hash": 83702148, "arguments": [ { - "name": "arg0", + "name": "text", "type": "String" } ] @@ -73728,6 +74025,44 @@ } ] }, + { + "name": "VirtualKeyboardType", + "is_bitfield": false, + "values": [ + { + "name": "KEYBOARD_TYPE_DEFAULT", + "value": 0 + }, + { + "name": "KEYBOARD_TYPE_MULTILINE", + "value": 1 + }, + { + "name": "KEYBOARD_TYPE_NUMBER", + "value": 2 + }, + { + "name": "KEYBOARD_TYPE_NUMBER_DECIMAL", + "value": 3 + }, + { + "name": "KEYBOARD_TYPE_PHONE", + "value": 4 + }, + { + "name": "KEYBOARD_TYPE_EMAIL_ADDRESS", + "value": 5 + }, + { + "name": "KEYBOARD_TYPE_PASSWORD", + "value": 6 + }, + { + "name": "KEYBOARD_TYPE_URL", + "value": 7 + } + ] + }, { "name": "CursorShape", "is_bitfield": false, @@ -76337,7 +76672,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 4231754459, + "hash": 860410478, "arguments": [ { "name": "existing_text", @@ -76349,9 +76684,9 @@ "default_value": "Rect2(0, 0, 0, 0)" }, { - "name": "multiline", - "type": "bool", - "default_value": "false" + "name": "type", + "type": "enum::DisplayServer.VirtualKeyboardType", + "default_value": "0" }, { "name": "max_length", @@ -82543,6 +82878,19 @@ } ] }, + { + "name": "property_can_revert_changed", + "arguments": [ + { + "name": "property", + "type": "StringName" + }, + { + "name": "can_revert", + "type": "bool" + } + ] + }, { "name": "resource_selected", "arguments": [ @@ -85152,6 +85500,17 @@ "type": "String" } }, + { + "name": "get_architecture_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 201670096, + "return_value": { + "type": "String" + } + }, { "name": "is_in_physics_frame", "is_const": true, @@ -90182,10 +90541,17 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 201670096, + "hash": 1162154673, "return_value": { "type": "String" - } + }, + "arguments": [ + { + "name": "skip_cr", + "type": "bool", + "default_value": "false" + } + ] }, { "name": "get_md5", @@ -94314,6 +94680,13 @@ } ] }, + { + "name": "FramebufferCacheRD", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "Object", + "api_type": "core" + }, { "name": "GDScript", "is_refcounted": true, @@ -100410,6 +100783,70 @@ "type": "float", "meta": "float" } + }, + { + "name": "set_bake_mask", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "mask", + "type": "int", + "meta": "uint32" + } + ] + }, + { + "name": "get_bake_mask", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "uint32" + } + }, + { + "name": "set_bake_mask_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 300928843, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_bake_mask_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1116898809, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] } ], "properties": [ @@ -100434,6 +100871,13 @@ "getter": "get_thickness", "index": -1 }, + { + "type": "int", + "name": "bake_mask", + "setter": "set_bake_mask", + "getter": "get_bake_mask", + "index": -1 + }, { "type": "Texture3D", "name": "texture", @@ -101538,6 +101982,37 @@ } ] }, + { + "name": "segment_intersects_circle", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1356928167, + "return_value": { + "type": "float", + "meta": "float" + }, + "arguments": [ + { + "name": "segment_from", + "type": "Vector2" + }, + { + "name": "segment_to", + "type": "Vector2" + }, + { + "name": "circle_position", + "type": "Vector2" + }, + { + "name": "circle_radius", + "type": "float", + "meta": "float" + } + ] + }, { "name": "segment_intersects_segment", "is_const": false, @@ -102702,7 +103177,7 @@ } }, { - "name": "set_shader_instance_uniform", + "name": "set_instance_shader_uniform", "is_const": false, "is_vararg": false, "is_static": false, @@ -102720,7 +103195,7 @@ ] }, { - "name": "get_shader_instance_uniform", + "name": "get_instance_shader_uniform", "is_const": true, "is_vararg": false, "is_static": false, @@ -103712,6 +104187,34 @@ } ] }, + { + "name": "_is_node_hover_valid", + "is_const": false, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "from", + "type": "StringName" + }, + { + "name": "from_slot", + "type": "int" + }, + { + "name": "to", + "type": "StringName" + }, + { + "name": "to_slot", + "type": "int" + } + ] + }, { "name": "connect_node", "is_const": false, @@ -108728,9 +109231,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3341600327, + "hash": 3690982128, "return_value": { - "type": "Vector2" + "type": "Vector2i" } }, { @@ -118774,20 +119277,24 @@ "value": 15 }, { - "name": "PARAM_SHADOW_BLUR", + "name": "PARAM_SHADOW_OPACITY", "value": 16 }, { - "name": "PARAM_SHADOW_VOLUMETRIC_FOG_FADE", + "name": "PARAM_SHADOW_BLUR", "value": 17 }, { - "name": "PARAM_TRANSMITTANCE_BIAS", + "name": "PARAM_SHADOW_VOLUMETRIC_FOG_FADE", "value": 18 }, { - "name": "PARAM_MAX", + "name": "PARAM_TRANSMITTANCE_BIAS", "value": 19 + }, + { + "name": "PARAM_MAX", + "value": 20 } ] }, @@ -119261,21 +119768,28 @@ "name": "shadow_transmittance_bias", "setter": "set_param", "getter": "get_param", - "index": 18 + "index": 19 }, { "type": "float", "name": "shadow_fog_fade", "setter": "set_param", "getter": "get_param", - "index": 17 + "index": 18 + }, + { + "type": "float", + "name": "shadow_opacity", + "setter": "set_param", + "getter": "get_param", + "index": 16 }, { "type": "float", "name": "shadow_blur", "setter": "set_param", "getter": "get_param", - "index": 16 + "index": 17 }, { "type": "bool", @@ -120856,6 +121370,44 @@ "value": 28 } ] + }, + { + "name": "VirtualKeyboardType", + "is_bitfield": false, + "values": [ + { + "name": "KEYBOARD_TYPE_DEFAULT", + "value": 0 + }, + { + "name": "KEYBOARD_TYPE_MULTILINE", + "value": 1 + }, + { + "name": "KEYBOARD_TYPE_NUMBER", + "value": 2 + }, + { + "name": "KEYBOARD_TYPE_NUMBER_DECIMAL", + "value": 3 + }, + { + "name": "KEYBOARD_TYPE_PHONE", + "value": 4 + }, + { + "name": "KEYBOARD_TYPE_EMAIL_ADDRESS", + "value": 5 + }, + { + "name": "KEYBOARD_TYPE_PASSWORD", + "value": 6 + }, + { + "name": "KEYBOARD_TYPE_URL", + "value": 7 + } + ] } ], "methods": [ @@ -121537,6 +122089,31 @@ "type": "bool" } }, + { + "name": "set_virtual_keyboard_type", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2696893573, + "arguments": [ + { + "name": "type", + "type": "enum::LineEdit.VirtualKeyboardType" + } + ] + }, + { + "name": "get_virtual_keyboard_type", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1928699316, + "return_value": { + "type": "enum::LineEdit.VirtualKeyboardType" + } + }, { "name": "set_clear_button_enabled", "is_const": false, @@ -121813,6 +122390,13 @@ "getter": "is_virtual_keyboard_enabled", "index": -1 }, + { + "type": "int", + "name": "virtual_keyboard_type", + "setter": "set_virtual_keyboard_type", + "getter": "get_virtual_keyboard_type", + "index": -1 + }, { "type": "bool", "name": "clear_button_enabled", @@ -126932,7 +127516,7 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "Object" + "type": "Node" }, "arguments": [ { @@ -126979,7 +127563,7 @@ }, "arguments": [ { - "name": "path", + "name": "index", "type": "int", "meta": "int32" } @@ -127068,10 +127652,6 @@ { "name": "despawned", "arguments": [ - { - "name": "scene_id", - "type": "int" - }, { "name": "node", "type": "Node" @@ -127081,10 +127661,6 @@ { "name": "spawned", "arguments": [ - { - "name": "scene_id", - "type": "int" - }, { "name": "node", "type": "Node" @@ -137221,6 +137797,58 @@ "type": "PackedStringArray" } }, + { + "name": "get_cmdline_user_args", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2981934095, + "return_value": { + "type": "PackedStringArray" + } + }, + { + "name": "set_restart_on_exit", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 611198603, + "arguments": [ + { + "name": "restart", + "type": "bool" + }, + { + "name": "arguments", + "type": "PackedStringArray", + "default_value": "PackedStringArray()" + } + ] + }, + { + "name": "is_restart_on_exit_set", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "get_restart_on_exit_arguments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1139954409, + "return_value": { + "type": "PackedStringArray" + } + }, { "name": "delay_usec", "is_const": true, @@ -140184,6 +140812,31 @@ "default_value": "false" } ] + }, + { + "name": "set_fit_to_longest_item", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "fit", + "type": "bool" + } + ] + }, + { + "name": "is_fit_to_longest_item", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } } ], "signals": [ @@ -140220,6 +140873,13 @@ "setter": "_select_int", "getter": "get_selected", "index": -1 + }, + { + "type": "bool", + "name": "fit_to_longest_item", + "setter": "set_fit_to_longest_item", + "getter": "is_fit_to_longest_item", + "index": -1 } ] }, @@ -141544,6 +142204,18 @@ }, { "name": "PARAM_MAX", + "value": 15 + }, + { + "name": "PARAM_TURB_VEL_INFLUENCE", + "value": 13 + }, + { + "name": "PARAM_TURB_INIT_DISPLACEMENT", + "value": 14 + }, + { + "name": "PARAM_TURB_INFLUENCE_OVER_LIFE", "value": 12 } ] @@ -142219,6 +142891,137 @@ "meta": "float" } }, + { + "name": "get_turbulence_enabled", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, + { + "name": "set_turbulence_enabled", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "turbulence_enabled", + "type": "bool" + } + ] + }, + { + "name": "get_turbulence_noise_strength", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_turbulence_noise_strength", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "turbulence_noise_strength", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_turbulence_noise_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_turbulence_noise_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "turbulence_noise_scale", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_turbulence_noise_speed_random", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_turbulence_noise_speed_random", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "turbulence_noise_speed_random", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_turbulence_noise_speed", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3360562783, + "return_value": { + "type": "Vector3" + } + }, + { + "name": "set_turbulence_noise_speed", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3460891852, + "arguments": [ + { + "name": "turbulence_noise_speed", + "type": "Vector3" + } + ] + }, { "name": "get_gravity", "is_const": true, @@ -142863,6 +143666,76 @@ "getter": "get_param_texture", "index": 9 }, + { + "type": "bool", + "name": "turbulence_enabled", + "setter": "set_turbulence_enabled", + "getter": "get_turbulence_enabled", + "index": -1 + }, + { + "type": "float", + "name": "turbulence_noise_strength", + "setter": "set_turbulence_noise_strength", + "getter": "get_turbulence_noise_strength", + "index": -1 + }, + { + "type": "float", + "name": "turbulence_noise_scale", + "setter": "set_turbulence_noise_scale", + "getter": "get_turbulence_noise_scale", + "index": -1 + }, + { + "type": "Vector3", + "name": "turbulence_noise_speed", + "setter": "set_turbulence_noise_speed", + "getter": "get_turbulence_noise_speed", + "index": -1 + }, + { + "type": "float", + "name": "turbulence_noise_speed_random", + "setter": "set_turbulence_noise_speed_random", + "getter": "get_turbulence_noise_speed_random", + "index": -1 + }, + { + "type": "float", + "name": "turbulence_influence_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 13 + }, + { + "type": "float", + "name": "turbulence_influence_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 13 + }, + { + "type": "float", + "name": "turbulence_initial_displacement_min", + "setter": "set_param_min", + "getter": "get_param_min", + "index": 14 + }, + { + "type": "float", + "name": "turbulence_initial_displacement_max", + "setter": "set_param_max", + "getter": "get_param_max", + "index": 14 + }, + { + "type": "CurveTexture", + "name": "turbulence_influence_over_life", + "setter": "set_param_texture", + "getter": "get_param_texture", + "index": 12 + }, { "type": "float", "name": "anim_speed_min", @@ -148466,6 +149339,38 @@ "inherits": "RefCounted", "api_type": "core", "methods": [ + { + "name": "create", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 1118143851, + "return_value": { + "type": "PhysicsRayQueryParameters2D" + }, + "arguments": [ + { + "name": "from", + "type": "Vector2" + }, + { + "name": "to", + "type": "Vector2" + }, + { + "name": "collision_mask", + "type": "int", + "meta": "uint32", + "default_value": "4294967295" + }, + { + "name": "exclude", + "type": "Array", + "default_value": "[]" + } + ] + }, { "name": "set_from", "is_const": false, @@ -148703,6 +149608,38 @@ "inherits": "RefCounted", "api_type": "core", "methods": [ + { + "name": "create", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 680321959, + "return_value": { + "type": "PhysicsRayQueryParameters3D" + }, + "arguments": [ + { + "name": "from", + "type": "Vector3" + }, + { + "name": "to", + "type": "Vector3" + }, + { + "name": "collision_mask", + "type": "int", + "meta": "uint32", + "default_value": "4294967295" + }, + { + "name": "exclude", + "type": "Array", + "default_value": "[]" + } + ] + }, { "name": "set_from", "is_const": false, @@ -168767,6 +169704,23 @@ "inherits": "RefCounted", "api_type": "core", "methods": [ + { + "name": "create_from_string", + "is_const": false, + "is_vararg": false, + "is_static": true, + "is_virtual": false, + "hash": 2150300909, + "return_value": { + "type": "RegEx" + }, + "arguments": [ + { + "name": "pattern", + "type": "String" + } + ] + }, { "name": "clear", "is_const": false, @@ -172010,6 +172964,23 @@ } ] }, + { + "name": "framebuffer_is_valid", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4155700596, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "framebuffer", + "type": "RID" + } + ] + }, { "name": "sampler_create", "is_const": false, @@ -173889,11 +174860,11 @@ "value": 0 }, { - "name": "LIGHT_PROJECTOR_FILTER_NEAREST_MIPMAPS", + "name": "LIGHT_PROJECTOR_FILTER_LINEAR", "value": 1 }, { - "name": "LIGHT_PROJECTOR_FILTER_LINEAR", + "name": "LIGHT_PROJECTOR_FILTER_NEAREST_MIPMAPS", "value": 2 }, { @@ -173901,8 +174872,12 @@ "value": 3 }, { - "name": "LIGHT_PROJECTOR_FILTER_LINEAR_MIPMAPS_ANISOTROPIC", + "name": "LIGHT_PROJECTOR_FILTER_NEAREST_MIPMAPS_ANISOTROPIC", "value": 4 + }, + { + "name": "LIGHT_PROJECTOR_FILTER_LINEAR_MIPMAPS_ANISOTROPIC", + "value": 5 } ] }, @@ -173993,20 +174968,24 @@ "value": 15 }, { - "name": "LIGHT_PARAM_SHADOW_BLUR", + "name": "LIGHT_PARAM_SHADOW_OPACITY", "value": 16 }, { - "name": "LIGHT_PARAM_SHADOW_VOLUMETRIC_FOG_FADE", + "name": "LIGHT_PARAM_SHADOW_BLUR", "value": 17 }, { - "name": "LIGHT_PARAM_TRANSMITTANCE_BIAS", + "name": "LIGHT_PARAM_SHADOW_VOLUMETRIC_FOG_FADE", "value": 18 }, { - "name": "LIGHT_PARAM_MAX", + "name": "LIGHT_PARAM_TRANSMITTANCE_BIAS", "value": 19 + }, + { + "name": "LIGHT_PARAM_MAX", + "value": 20 } ] }, @@ -174179,11 +175158,11 @@ "value": 0 }, { - "name": "DECAL_FILTER_NEAREST_MIPMAPS", + "name": "DECAL_FILTER_LINEAR", "value": 1 }, { - "name": "DECAL_FILTER_LINEAR", + "name": "DECAL_FILTER_NEAREST_MIPMAPS", "value": 2 }, { @@ -174191,8 +175170,12 @@ "value": 3 }, { - "name": "DECAL_FILTER_LINEAR_MIPMAPS_ANISOTROPIC", + "name": "DECAL_FILTER_NEAREST_MIPMAPS_ANISOTROPIC", "value": 4 + }, + { + "name": "DECAL_FILTER_LINEAR_MIPMAPS_ANISOTROPIC", + "value": 5 } ] }, @@ -176031,7 +177014,7 @@ ] }, { - "name": "shader_get_param_list", + "name": "shader_get_shader_uniform_list", "is_const": true, "is_vararg": false, "is_static": false, @@ -182236,7 +183219,7 @@ ] }, { - "name": "instance_geometry_set_shader_parameter", + "name": "instance_geometry_set_shader_uniform", "is_const": false, "is_vararg": false, "is_static": false, @@ -182258,7 +183241,7 @@ ] }, { - "name": "instance_geometry_get_shader_parameter", + "name": "instance_geometry_get_shader_uniform", "is_const": true, "is_vararg": false, "is_static": false, @@ -182279,7 +183262,7 @@ ] }, { - "name": "instance_geometry_get_shader_parameter_default_value", + "name": "instance_geometry_get_shader_uniform_default_value", "is_const": true, "is_vararg": false, "is_static": false, @@ -182300,7 +183283,7 @@ ] }, { - "name": "instance_geometry_get_shader_parameter_list", + "name": "instance_geometry_get_shader_uniform_list", "is_const": true, "is_vararg": false, "is_static": false, @@ -185109,7 +186092,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3713126301, + "hash": 1939848623, "return_value": { "type": "enum::Error" }, @@ -185127,6 +186110,11 @@ "name": "use_sub_threads", "type": "bool", "default_value": "false" + }, + { + "name": "cache_mode", + "type": "enum::ResourceLoader.CacheMode", + "default_value": "1" } ] }, @@ -189931,9 +190919,140 @@ { "name": "RootMotionView", "is_refcounted": false, - "is_instantiable": false, + "is_instantiable": true, "inherits": "VisualInstance3D", "api_type": "core", + "methods": [ + { + "name": "set_animation_path", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1348162250, + "arguments": [ + { + "name": "path", + "type": "NodePath" + } + ] + }, + { + "name": "get_animation_path", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 4075236667, + "return_value": { + "type": "NodePath" + } + }, + { + "name": "set_color", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2920490490, + "arguments": [ + { + "name": "color", + "type": "Color" + } + ] + }, + { + "name": "get_color", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3444240500, + "return_value": { + "type": "Color" + } + }, + { + "name": "set_cell_size", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_cell_size", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "size", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_zero_y", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "get_zero_y", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + } + ], "properties": [ { "type": "NodePath", @@ -194093,7 +195212,7 @@ ] }, { - "name": "has_param", + "name": "has_uniform", "is_const": true, "is_vararg": false, "is_static": false, @@ -194203,7 +195322,7 @@ } }, { - "name": "set_shader_param", + "name": "set_shader_uniform", "is_const": false, "is_vararg": false, "is_static": false, @@ -194221,7 +195340,7 @@ ] }, { - "name": "get_shader_param", + "name": "get_shader_uniform", "is_const": true, "is_vararg": false, "is_static": false, @@ -204410,6 +205529,33 @@ } ] }, + { + "name": "set_custom_arrow_step", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "arrow_step", + "type": "float", + "meta": "double" + } + ] + }, + { + "name": "get_custom_arrow_step", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "double" + } + }, { "name": "is_editable", "is_const": true, @@ -204501,6 +205647,13 @@ "setter": "set_suffix", "getter": "get_suffix", "index": -1 + }, + { + "type": "float", + "name": "custom_arrow_step", + "setter": "set_custom_arrow_step", + "getter": "get_custom_arrow_step", + "index": -1 } ] }, @@ -213963,7 +215116,7 @@ "hash": 2586408642, "arguments": [ { - "name": "arg0", + "name": "enabled", "type": "bool" } ] @@ -217566,6 +218719,10 @@ { "name": "GRAPHEME_IS_CONNECTED", "value": 1024 + }, + { + "name": "GRAPHEME_IS_SAFE_TO_INSERT_TATWEEL", + "value": 2048 } ] }, @@ -217672,6 +218829,14 @@ { "name": "FEATURE_USE_SUPPORT_DATA", "value": 4096 + }, + { + "name": "FEATURE_UNICODE_IDENTIFIERS", + "value": 8192 + }, + { + "name": "FEATURE_UNICODE_SECURITY", + "value": 16384 } ] }, @@ -221504,6 +222669,45 @@ } ] }, + { + "name": "is_confusable", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1433197768, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "dict", + "type": "PackedStringArray" + } + ] + }, + { + "name": "spoof_check", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3927539163, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, { "name": "strip_diacritics", "is_const": true, @@ -221521,6 +222725,23 @@ } ] }, + { + "name": "is_valid_identifier", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3927539163, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, { "name": "string_to_upper", "is_const": true, @@ -225054,6 +226275,22 @@ } ] }, + { + "name": "is_valid_identifier", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, { "name": "string_get_word_breaks", "is_const": true, @@ -225074,6 +226311,42 @@ } ] }, + { + "name": "is_confusable", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "int" + }, + "arguments": [ + { + "name": "string", + "type": "String" + }, + { + "name": "dict", + "type": "PackedStringArray" + } + ] + }, + { + "name": "spoof_check", + "is_const": true, + "is_static": false, + "is_vararg": false, + "is_virtual": true, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "string", + "type": "String" + } + ] + }, { "name": "string_to_upper", "is_const": true, @@ -233889,6 +235162,153 @@ } ] }, + { + "name": "TorusMesh", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "PrimitiveMesh", + "api_type": "core", + "methods": [ + { + "name": "set_inner_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_inner_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_outer_radius", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "radius", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_outer_radius", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_rings", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "rings", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_rings", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "set_ring_segments", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "rings", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_ring_segments", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + } + ], + "properties": [ + { + "type": "float", + "name": "inner_radius", + "setter": "set_inner_radius", + "getter": "get_inner_radius", + "index": -1 + }, + { + "type": "float", + "name": "outer_radius", + "setter": "set_outer_radius", + "getter": "get_outer_radius", + "index": -1 + }, + { + "type": "int", + "name": "rings", + "setter": "set_rings", + "getter": "get_rings", + "index": -1 + }, + { + "type": "int", + "name": "ring_segments", + "setter": "set_ring_segments", + "getter": "get_ring_segments", + "index": -1 + } + ] + }, { "name": "TouchScreenButton", "is_refcounted": false, @@ -252932,8 +254352,12 @@ "value": 1 }, { - "name": "COLOR_DEFAULT_MAX", + "name": "COLOR_DEFAULT_TRANSPARENT", "value": 2 + }, + { + "name": "COLOR_DEFAULT_MAX", + "value": 3 } ] }, @@ -254539,7 +255963,7 @@ "name": "VisualShaderNodeVectorRefract", "is_refcounted": true, "is_instantiable": true, - "inherits": "VisualShaderNode", + "inherits": "VisualShaderNodeVectorBase", "api_type": "core" }, { @@ -261788,6 +263212,10 @@ "name": "Glyph", "format": "int start = -1;int end = -1;uint8_t count = 0;uint8_t repeat = 1;uint16_t flags = 0;float x_off = 0.f;float y_off = 0.f;float advance = 0.f;RID font_rid;int font_size = 0;int32_t index = 0" }, + { + "name": "ObjectID", + "format": "uint64_t id = 0" + }, { "name": "PhysicsServer3DExtensionMotionCollision", "format": "Vector3 position;Vector3 normal;Vector3 collider_velocity;real_t depth;int local_shape;ObjectID collider_id;RID collider;int collider_shape"