diff --git a/binding_generator.py b/binding_generator.py index 6ce4379f..d837d352 100644 --- a/binding_generator.py +++ b/binding_generator.py @@ -696,6 +696,7 @@ def generate_builtin_class_header(builtin_api, size, used_classes, fully_used_cl if class_name == "Array": result.append(f"\tconst Variant &operator[](int p_index) const;") result.append(f"\tVariant &operator[](int p_index);") + result.append(f"\tvoid set_typed(uint32_t p_type, const StringName &p_class_name, const Variant &p_script);") if class_name == "Dictionary": result.append(f"\tconst Variant &operator[](const Variant &p_key) const;") diff --git a/gdextension/extension_api.json b/gdextension/extension_api.json index 0ec079ad..b44f143e 100644 --- a/gdextension/extension_api.json +++ b/gdextension/extension_api.json @@ -3,9 +3,9 @@ "version_major": 4, "version_minor": 0, "version_patch": 0, - "version_status": "beta16", - "version_build": "official", - "version_full_name": "Godot Engine v4.0.beta16.official" + "version_status": "beta", + "version_build": "custom_build", + "version_full_name": "Godot Engine v4.0.beta.custom_build" }, "builtin_class_sizes": [ { @@ -19380,27 +19380,6 @@ } ] }, - { - "name": "set_typed", - "is_vararg": false, - "is_const": false, - "is_static": false, - "hash": 2557487401, - "arguments": [ - { - "name": "type", - "type": "int" - }, - { - "name": "class_name", - "type": "StringName" - }, - { - "name": "script", - "type": "Variant" - } - ] - }, { "name": "is_typed", "return_type": "bool", @@ -23299,16 +23278,19 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { "name": "from_id", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "to_id", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -23319,16 +23301,19 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { "name": "from_id", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "to_id", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -23772,16 +23757,19 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { "name": "from_id", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "to_id", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -23792,16 +23780,19 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { "name": "from_id", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "to_id", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -24299,7 +24290,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -24319,7 +24311,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -27533,6 +27526,43 @@ } ] }, + { + "name": "audio_track_set_use_blend", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 300928843, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + }, + { + "name": "enable", + "type": "bool" + } + ] + }, + { + "name": "audio_track_is_use_blend", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1116898809, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "track_idx", + "type": "int", + "meta": "int32" + } + ] + }, { "name": "animation_track_insert_key", "is_const": false, @@ -28019,12 +28049,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { "name": "time", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "seek", @@ -28056,43 +28088,16 @@ "type": "bool" } }, - { - "name": "get_input_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_input_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 990163283, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "input", - "type": "int", - "meta": "int32" - } - ] - }, { "name": "add_input", "is_const": false, "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 83702148, + "hash": 2323990056, + "return_value": { + "type": "bool" + }, "arguments": [ { "name": "name", @@ -28115,6 +28120,76 @@ } ] }, + { + "name": "set_input_name", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 215573526, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "input", + "type": "int", + "meta": "int32" + }, + { + "name": "name", + "type": "String" + } + ] + }, + { + "name": "get_input_name", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 844755477, + "return_value": { + "type": "String" + }, + "arguments": [ + { + "name": "input", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_input_count", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, + { + "name": "find_input", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1321353865, + "return_value": { + "type": "int", + "meta": "int32" + }, + "arguments": [ + { + "name": "name", + "type": "String" + } + ] + }, { "name": "set_filter_path", "is_const": false, @@ -30611,7 +30686,7 @@ "api_type": "core", "methods": [ { - "name": "set_enabled_inputs", + "name": "set_input_count", "is_const": false, "is_vararg": false, "is_static": false, @@ -30619,24 +30694,12 @@ "hash": 1286410249, "arguments": [ { - "name": "amount", + "name": "input_count", "type": "int", "meta": "int32" } ] }, - { - "name": "get_enabled_inputs", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2455072627, - "return_value": { - "type": "int", - "meta": "int32" - } - }, { "name": "set_input_as_auto_advance", "is_const": false, @@ -30674,61 +30737,6 @@ } ] }, - { - "name": "set_input_caption", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 501894301, - "arguments": [ - { - "name": "input", - "type": "int", - "meta": "int32" - }, - { - "name": "caption", - "type": "String" - } - ] - }, - { - "name": "get_input_caption", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 844755477, - "return_value": { - "type": "String" - }, - "arguments": [ - { - "name": "input", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "find_input_caption", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1321353865, - "return_value": { - "type": "int", - "meta": "int32" - }, - "arguments": [ - { - "name": "caption", - "type": "String" - } - ] - }, { "name": "set_xfade_time", "is_const": false, @@ -30808,12 +30816,6 @@ } ], "properties": [ - { - "type": "int", - "name": "enabled_inputs", - "setter": "set_enabled_inputs", - "getter": "get_enabled_inputs" - }, { "type": "float", "name": "xfade_time", @@ -30831,6 +30833,12 @@ "name": "reset", "setter": "set_reset", "getter": "is_reset" + }, + { + "type": "int", + "name": "input_count", + "setter": "set_input_count", + "getter": "get_input_count" } ] }, @@ -30891,7 +30899,8 @@ }, { "name": "track", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "value", @@ -30903,7 +30912,8 @@ }, { "name": "object_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -31558,6 +31568,33 @@ "type": "enum::AnimationPlayer.AnimationMethodCallMode" } }, + { + "name": "set_audio_max_polyphony", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "max_polyphony", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_audio_max_polyphony", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, { "name": "set_movie_quit_on_finish_enabled", "is_const": false, @@ -31756,6 +31793,12 @@ "setter": "set_method_call_mode", "getter": "get_method_call_mode" }, + { + "type": "int", + "name": "audio_max_polyphony", + "setter": "set_audio_max_polyphony", + "getter": "get_audio_max_polyphony" + }, { "type": "bool", "name": "movie_quit_on_finish", @@ -31821,7 +31864,8 @@ }, { "name": "track", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "value", @@ -31833,7 +31877,8 @@ }, { "name": "object_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -31987,6 +32032,33 @@ "type": "NodePath" } }, + { + "name": "set_audio_max_polyphony", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1286410249, + "arguments": [ + { + "name": "max_polyphony", + "type": "int", + "meta": "int32" + } + ] + }, + { + "name": "get_audio_max_polyphony", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 3905245786, + "return_value": { + "type": "int", + "meta": "int32" + } + }, { "name": "get_root_motion_position", "is_const": true, @@ -32108,6 +32180,12 @@ "setter": "set_process_callback", "getter": "get_process_callback" }, + { + "type": "int", + "name": "audio_max_polyphony", + "setter": "set_audio_max_polyphony", + "getter": "get_audio_max_polyphony" + }, { "type": "NodePath", "name": "root_motion_track", @@ -36323,7 +36401,8 @@ }, { "name": "frame_count", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -38488,7 +38567,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" } }, { @@ -38508,7 +38588,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" } }, { @@ -38518,7 +38599,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -39160,7 +39242,8 @@ "arguments": [ { "name": "from_pos", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -39188,7 +39271,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -39198,7 +39282,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" } }, { @@ -39210,7 +39295,8 @@ "arguments": [ { "name": "position", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -39221,7 +39307,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -39230,11 +39317,13 @@ }, { "name": "rate_scale", - "type": "float" + "type": "float", + "meta": "float" }, { "name": "frames", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -39392,7 +39481,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -39401,7 +39491,8 @@ }, { "name": "frame_count", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -39412,7 +39503,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -39720,6 +39812,17 @@ "meta": "int32" } }, + { + "name": "has_stream_playback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2240911060, + "return_value": { + "type": "bool" + } + }, { "name": "get_stream_playback", "is_const": false, @@ -40152,6 +40255,17 @@ "meta": "float" } }, + { + "name": "has_stream_playback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2240911060, + "return_value": { + "type": "bool" + } + }, { "name": "get_stream_playback", "is_const": false, @@ -40854,6 +40968,17 @@ "meta": "float" } }, + { + "name": "has_stream_playback", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2240911060, + "return_value": { + "type": "bool" + } + }, { "name": "get_stream_playback", "is_const": false, @@ -62046,7 +62171,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -62073,7 +62199,8 @@ "arguments": [ { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -62086,7 +62213,8 @@ "arguments": [ { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -62786,7 +62914,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -72871,7 +73000,7 @@ "type": "String" }, { - "name": "labe", + "name": "label", "type": "String" }, { @@ -75516,6 +75645,13 @@ } ] }, + { + "name": "DisplayServerMacOS", + "is_refcounted": false, + "is_instantiable": false, + "inherits": "DisplayServer", + "api_type": "core" + }, { "name": "ENetConnection", "is_refcounted": true, @@ -76567,7 +76703,8 @@ "arguments": [ { "name": "session_id", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -76607,7 +76744,8 @@ }, { "name": "session_id", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -76830,7 +76968,8 @@ }, { "name": "flags", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -76928,7 +77067,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint64" } }, { @@ -78224,7 +78364,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -78239,7 +78380,8 @@ "arguments": [ { "name": "preset_index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -78269,7 +78411,8 @@ }, { "name": "preset_index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -78300,7 +78443,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -78310,7 +78454,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -78344,7 +78489,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -78564,7 +78710,8 @@ }, { "name": "type", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "name", @@ -78572,7 +78719,8 @@ }, { "name": "hint_type", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "hint_string", @@ -78580,7 +78728,8 @@ }, { "name": "usage_flags", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "wide", @@ -79244,7 +79393,8 @@ "arguments": [ { "name": "id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "secondary", @@ -79264,7 +79414,8 @@ "arguments": [ { "name": "id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "secondary", @@ -79284,7 +79435,8 @@ "arguments": [ { "name": "id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "secondary", @@ -79301,7 +79453,8 @@ "arguments": [ { "name": "id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "secondary", @@ -79326,7 +79479,8 @@ "arguments": [ { "name": "id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "secondary", @@ -79349,7 +79503,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -79391,7 +79546,8 @@ "arguments": [ { "name": "id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "transform", @@ -79411,7 +79567,8 @@ "arguments": [ { "name": "id", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -79723,7 +79880,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -79775,7 +79933,8 @@ }, { "name": "handle_id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "secondary", @@ -79799,7 +79958,8 @@ }, { "name": "handle_id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "secondary", @@ -79823,7 +79983,8 @@ }, { "name": "handle_id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "secondary", @@ -79844,7 +80005,8 @@ }, { "name": "handle_id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "secondary", @@ -79873,7 +80035,8 @@ }, { "name": "handle_id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "secondary", @@ -79896,7 +80059,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -79953,7 +80117,8 @@ }, { "name": "subgizmo_id", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -79970,7 +80135,8 @@ }, { "name": "subgizmo_id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "transform", @@ -80377,7 +80543,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -81819,7 +81986,8 @@ "arguments": [ { "name": "id", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -82239,7 +82407,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -82268,7 +82437,8 @@ }, { "name": "flags", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "options", @@ -82428,7 +82598,8 @@ "arguments": [ { "name": "category", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -82444,7 +82615,8 @@ "arguments": [ { "name": "category", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "for_animation", @@ -82468,7 +82640,8 @@ "arguments": [ { "name": "category", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "option", @@ -82485,7 +82658,8 @@ "arguments": [ { "name": "category", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "base_node", @@ -83745,7 +83919,8 @@ }, { "name": "area", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -83781,7 +83956,8 @@ "arguments": [ { "name": "max_commits", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -84946,19 +85122,23 @@ "arguments": [ { "name": "frame_time", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "process_time", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "physics_time", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "physics_frame_time", - "type": "float" + "type": "float", + "meta": "double" } ] } @@ -94920,7 +95100,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3417515375, + "hash": 2770277081, "return_value": { "type": "Node" }, @@ -94939,6 +95119,11 @@ "name": "trimming", "type": "bool", "default_value": "false" + }, + { + "name": "remove_immutable_tracks", + "type": "bool", + "default_value": "true" } ] }, @@ -95029,7 +95214,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -95059,7 +95245,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -95107,7 +95294,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -95123,7 +95311,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -95151,7 +95340,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -95171,7 +95361,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -95212,7 +95403,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -95240,7 +95432,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -103147,7 +103340,8 @@ }, { "name": "in_port", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "mouse_position", @@ -103171,7 +103365,8 @@ }, { "name": "in_port", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "mouse_position", @@ -103215,7 +103410,8 @@ }, { "name": "from_port", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "to_node", @@ -103223,7 +103419,8 @@ }, { "name": "to_port", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -109486,7 +109683,8 @@ }, { "name": "scale", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -116892,6 +117090,10 @@ { "name": "ALPHA_CUT_OPAQUE_PREPASS", "value": 2 + }, + { + "name": "ALPHA_CUT_HASH", + "value": 3 } ] } @@ -117523,6 +117725,33 @@ "meta": "float" } }, + { + "name": "set_alpha_hash_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "threshold", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_alpha_hash_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, { "name": "set_texture_filter", "is_const": false, @@ -117619,6 +117848,12 @@ "setter": "set_alpha_scissor_threshold", "getter": "get_alpha_scissor_threshold" }, + { + "type": "float", + "name": "alpha_hash_scale", + "setter": "set_alpha_hash_scale", + "getter": "get_alpha_hash_scale" + }, { "type": "int", "name": "texture_filter", @@ -122289,7 +122524,8 @@ "arguments": [ { "name": "delta", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -122305,7 +122541,8 @@ "arguments": [ { "name": "delta", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -123478,7 +123715,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -123488,12 +123726,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { "name": "index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -123504,12 +123744,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { "name": "index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -123525,7 +123767,8 @@ "arguments": [ { "name": "index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -123541,7 +123784,8 @@ "arguments": [ { "name": "index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -123557,7 +123801,8 @@ "arguments": [ { "name": "index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -123568,12 +123813,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { "name": "index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -123584,12 +123831,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { "name": "index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -123602,7 +123851,8 @@ "arguments": [ { "name": "index", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "material", @@ -123622,7 +123872,8 @@ "arguments": [ { "name": "index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -123633,7 +123884,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -123648,7 +123900,8 @@ "arguments": [ { "name": "index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -123661,7 +123914,8 @@ "arguments": [ { "name": "index", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "name", @@ -125890,7 +126144,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" } }, { @@ -125935,7 +126190,8 @@ }, { "name": "fps", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "base_path", @@ -126833,7 +127089,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -126866,7 +127123,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -126886,12 +127144,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { "name": "peer", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "object", @@ -126914,7 +127174,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -126924,7 +127185,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -126944,7 +127206,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -127308,7 +127571,8 @@ }, { "name": "p_buffer_size", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -127319,7 +127583,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -127329,7 +127594,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -127367,7 +127633,8 @@ "arguments": [ { "name": "p_channel", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -127378,7 +127645,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -127413,7 +127681,8 @@ "arguments": [ { "name": "p_peer", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -127424,7 +127693,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -127460,7 +127730,8 @@ "arguments": [ { "name": "p_peer", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "p_force", @@ -127475,7 +127746,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -128010,9 +128282,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 166280745, + "hash": 2240911060, "return_value": { - "type": "enum::Error" + "type": "bool" } }, { @@ -133848,25 +134120,15 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 219322232, + "hash": 3379118538, "arguments": [ { "name": "agent", "type": "RID" }, { - "name": "object_id", - "type": "int", - "meta": "uint64" - }, - { - "name": "method", - "type": "StringName" - }, - { - "name": "userdata", - "type": "Variant", - "default_value": "null" + "name": "callback", + "type": "Callable" } ] }, @@ -135210,25 +135472,15 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 219322232, + "hash": 3379118538, "arguments": [ { "name": "agent", "type": "RID" }, { - "name": "object_id", - "type": "int", - "meta": "uint64" - }, - { - "name": "method", - "type": "StringName" - }, - { - "name": "userdata", - "type": "Variant", - "default_value": "null" + "name": "callback", + "type": "Callable" } ] }, @@ -135819,7 +136071,8 @@ "arguments": [ { "name": "delta", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -135832,7 +136085,8 @@ "arguments": [ { "name": "delta", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -138983,7 +139237,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 3397462027, + "hash": 2569233413, "return_value": { "type": "Image" }, @@ -139007,6 +139261,11 @@ "name": "in_3d_space", "type": "bool", "default_value": "false" + }, + { + "name": "normalize", + "type": "bool", + "default_value": "true" } ] }, @@ -139016,7 +139275,7 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 943521238, + "hash": 2210827790, "return_value": { "type": "Image" }, @@ -139046,6 +139305,11 @@ "type": "float", "meta": "float", "default_value": "0.1" + }, + { + "name": "normalize", + "type": "bool", + "default_value": "true" } ] } @@ -139267,6 +139531,31 @@ "meta": "float" } }, + { + "name": "set_normalize", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2586408642, + "arguments": [ + { + "name": "normalize", + "type": "bool" + } + ] + }, + { + "name": "is_normalized", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 36873697, + "return_value": { + "type": "bool" + } + }, { "name": "set_color_ramp", "is_const": false, @@ -139373,6 +139662,12 @@ "setter": "set_bump_strength", "getter": "get_bump_strength" }, + { + "type": "bool", + "name": "normalize", + "setter": "set_normalize", + "getter": "is_normalized" + }, { "type": "Gradient", "name": "color_ramp", @@ -141662,958 +141957,6 @@ } ] }, - { - "name": "OpenXRAction", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "enums": [ - { - "name": "ActionType", - "is_bitfield": false, - "values": [ - { - "name": "OPENXR_ACTION_BOOL", - "value": 0 - }, - { - "name": "OPENXR_ACTION_FLOAT", - "value": 1 - }, - { - "name": "OPENXR_ACTION_VECTOR2", - "value": 2 - }, - { - "name": "OPENXR_ACTION_POSE", - "value": 3 - } - ] - } - ], - "methods": [ - { - "name": "set_localized_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "localized_name", - "type": "String" - } - ] - }, - { - "name": "get_localized_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_action_type", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1675238366, - "arguments": [ - { - "name": "action_type", - "type": "enum::OpenXRAction.ActionType" - } - ] - }, - { - "name": "get_action_type", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3536542431, - "return_value": { - "type": "enum::OpenXRAction.ActionType" - } - }, - { - "name": "set_toplevel_paths", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "toplevel_paths", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_toplevel_paths", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - } - ], - "properties": [ - { - "type": "String", - "name": "localized_name", - "setter": "set_localized_name", - "getter": "get_localized_name" - }, - { - "type": "int", - "name": "action_type", - "setter": "set_action_type", - "getter": "get_action_type" - }, - { - "type": "PackedStringArray", - "name": "toplevel_paths", - "setter": "set_toplevel_paths", - "getter": "get_toplevel_paths" - } - ] - }, - { - "name": "OpenXRActionMap", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_action_sets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "action_sets", - "type": "Array" - } - ] - }, - { - "name": "get_action_sets", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_action_set_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "find_action_set", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1888809267, - "return_value": { - "type": "OpenXRActionSet" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_action_set", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1789580336, - "return_value": { - "type": "OpenXRActionSet" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_action_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2093310581, - "arguments": [ - { - "name": "action_set", - "type": "OpenXRActionSet" - } - ] - }, - { - "name": "remove_action_set", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2093310581, - "arguments": [ - { - "name": "action_set", - "type": "OpenXRActionSet" - } - ] - }, - { - "name": "set_interaction_profiles", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "interaction_profiles", - "type": "Array" - } - ] - }, - { - "name": "get_interaction_profiles", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "get_interaction_profile_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "find_interaction_profile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3095875538, - "return_value": { - "type": "OpenXRInteractionProfile" - }, - "arguments": [ - { - "name": "name", - "type": "String" - } - ] - }, - { - "name": "get_interaction_profile", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2546151210, - "return_value": { - "type": "OpenXRInteractionProfile" - }, - "arguments": [ - { - "name": "idx", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "add_interaction_profile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2697953512, - "arguments": [ - { - "name": "interaction_profile", - "type": "OpenXRInteractionProfile" - } - ] - }, - { - "name": "remove_interaction_profile", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2697953512, - "arguments": [ - { - "name": "interaction_profile", - "type": "OpenXRInteractionProfile" - } - ] - }, - { - "name": "create_default_action_sets", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3218959716 - } - ], - "properties": [ - { - "type": "OpenXRActionSet", - "name": "action_sets", - "setter": "set_action_sets", - "getter": "get_action_sets" - }, - { - "type": "OpenXRInteractionProfile", - "name": "interaction_profiles", - "setter": "set_interaction_profiles", - "getter": "get_interaction_profiles" - } - ] - }, - { - "name": "OpenXRActionSet", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_localized_name", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "localized_name", - "type": "String" - } - ] - }, - { - "name": "get_localized_name", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "set_priority", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1286410249, - "arguments": [ - { - "name": "priority", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "get_priority", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_action_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_actions", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "actions", - "type": "Array" - } - ] - }, - { - "name": "get_actions", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - }, - { - "name": "add_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 349361333, - "arguments": [ - { - "name": "action", - "type": "OpenXRAction" - } - ] - }, - { - "name": "remove_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 349361333, - "arguments": [ - { - "name": "action", - "type": "OpenXRAction" - } - ] - } - ], - "properties": [ - { - "type": "String", - "name": "localized_name", - "setter": "set_localized_name", - "getter": "get_localized_name" - }, - { - "type": "int", - "name": "priority", - "setter": "set_priority", - "getter": "get_priority" - }, - { - "type": "OpenXRAction", - "name": "actions", - "setter": "set_actions", - "getter": "get_actions" - } - ] - }, - { - "name": "OpenXRHand", - "is_refcounted": false, - "is_instantiable": true, - "inherits": "Node3D", - "api_type": "core", - "enums": [ - { - "name": "Hands", - "is_bitfield": false, - "values": [ - { - "name": "HAND_LEFT", - "value": 0 - }, - { - "name": "HAND_RIGHT", - "value": 1 - }, - { - "name": "HAND_MAX", - "value": 2 - } - ] - }, - { - "name": "MotionRange", - "is_bitfield": false, - "values": [ - { - "name": "MOTION_RANGE_UNOBSTRUCTED", - "value": 0 - }, - { - "name": "MOTION_RANGE_CONFORM_TO_CONTROLLER", - "value": 1 - }, - { - "name": "MOTION_RANGE_MAX", - "value": 2 - } - ] - } - ], - "methods": [ - { - "name": "set_hand", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1849328560, - "arguments": [ - { - "name": "hand", - "type": "enum::OpenXRHand.Hands" - } - ] - }, - { - "name": "get_hand", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2850644561, - "return_value": { - "type": "enum::OpenXRHand.Hands" - } - }, - { - "name": "set_hand_skeleton", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1348162250, - "arguments": [ - { - "name": "hand_skeleton", - "type": "NodePath" - } - ] - }, - { - "name": "get_hand_skeleton", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4075236667, - "return_value": { - "type": "NodePath" - } - }, - { - "name": "set_motion_range", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3326516003, - "arguments": [ - { - "name": "motion_range", - "type": "enum::OpenXRHand.MotionRange" - } - ] - }, - { - "name": "get_motion_range", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 2191822314, - "return_value": { - "type": "enum::OpenXRHand.MotionRange" - } - } - ], - "properties": [ - { - "type": "int", - "name": "hand", - "setter": "set_hand", - "getter": "get_hand" - }, - { - "type": "int", - "name": "motion_range", - "setter": "set_motion_range", - "getter": "get_motion_range" - }, - { - "type": "NodePath", - "name": "hand_skeleton", - "setter": "set_hand_skeleton", - "getter": "get_hand_skeleton" - } - ] - }, - { - "name": "OpenXRIPBinding", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_action", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 349361333, - "arguments": [ - { - "name": "action", - "type": "OpenXRAction" - } - ] - }, - { - "name": "get_action", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4072409085, - "return_value": { - "type": "OpenXRAction" - } - }, - { - "name": "get_path_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "set_paths", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 4015028928, - "arguments": [ - { - "name": "paths", - "type": "PackedStringArray" - } - ] - }, - { - "name": "get_paths", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1139954409, - "return_value": { - "type": "PackedStringArray" - } - }, - { - "name": "has_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3927539163, - "return_value": { - "type": "bool" - }, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "add_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - }, - { - "name": "remove_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "path", - "type": "String" - } - ] - } - ], - "properties": [ - { - "type": "OpenXRAction", - "name": "action", - "setter": "set_action", - "getter": "get_action" - }, - { - "type": "PackedStringArray", - "name": "paths", - "setter": "set_paths", - "getter": "get_paths" - } - ] - }, - { - "name": "OpenXRInteractionProfile", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "Resource", - "api_type": "core", - "methods": [ - { - "name": "set_interaction_profile_path", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 83702148, - "arguments": [ - { - "name": "interaction_profile_path", - "type": "String" - } - ] - }, - { - "name": "get_interaction_profile_path", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 201670096, - "return_value": { - "type": "String" - } - }, - { - "name": "get_binding_count", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3905245786, - "return_value": { - "type": "int", - "meta": "int32" - } - }, - { - "name": "get_binding", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3934429652, - "return_value": { - "type": "OpenXRIPBinding" - }, - "arguments": [ - { - "name": "index", - "type": "int", - "meta": "int32" - } - ] - }, - { - "name": "set_bindings", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 381264803, - "arguments": [ - { - "name": "bindings", - "type": "Array" - } - ] - }, - { - "name": "get_bindings", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - } - ], - "properties": [ - { - "type": "String", - "name": "interaction_profile_path", - "setter": "set_interaction_profile_path", - "getter": "get_interaction_profile_path" - }, - { - "type": "OpenXRIPBinding", - "name": "bindings", - "setter": "set_bindings", - "getter": "get_bindings" - } - ] - }, - { - "name": "OpenXRInterface", - "is_refcounted": true, - "is_instantiable": true, - "inherits": "XRInterface", - "api_type": "core", - "methods": [ - { - "name": "get_display_refresh_rate", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 1740695150, - "return_value": { - "type": "float", - "meta": "float" - } - }, - { - "name": "set_display_refresh_rate", - "is_const": false, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 373806689, - "arguments": [ - { - "name": "refresh_rate", - "type": "float", - "meta": "float" - } - ] - }, - { - "name": "get_available_display_refresh_rates", - "is_const": true, - "is_vararg": false, - "is_static": false, - "is_virtual": false, - "hash": 3995934104, - "return_value": { - "type": "Array" - } - } - ], - "signals": [ - { - "name": "session_begun" - }, - { - "name": "session_stopping" - }, - { - "name": "session_focussed" - }, - { - "name": "session_visible" - }, - { - "name": "pose_recentered" - } - ], - "properties": [ - { - "type": "float", - "name": "display_refresh_rate", - "setter": "set_display_refresh_rate", - "getter": "get_display_refresh_rate" - } - ] - }, { "name": "OptimizedTranslation", "is_refcounted": true, @@ -143689,7 +143032,8 @@ }, { "name": "p_buffer_size", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -143700,7 +143044,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -143710,7 +143055,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } } ] @@ -149335,7 +148681,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -149345,7 +148692,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -149375,7 +148723,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -149385,7 +148734,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -149420,7 +148770,8 @@ "arguments": [ { "name": "velocity", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -149431,7 +148782,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -149512,7 +148864,8 @@ "arguments": [ { "name": "impulse", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -149555,7 +148908,8 @@ "arguments": [ { "name": "torque", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -149598,7 +148952,8 @@ "arguments": [ { "name": "torque", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -149634,7 +148989,8 @@ "arguments": [ { "name": "torque", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -149645,7 +149001,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -149678,7 +149035,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -149693,7 +149051,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -149709,7 +149068,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -149720,12 +149080,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -149741,7 +149103,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -149757,7 +149120,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -149768,12 +149132,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint64" }, "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -149789,7 +149155,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -149800,12 +149167,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -149821,7 +149190,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -149837,7 +149207,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -149848,7 +149219,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -150618,7 +149990,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -150628,7 +150001,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -150668,7 +150042,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -150981,7 +150356,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -150996,7 +150372,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151012,7 +150389,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151028,7 +150406,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151039,12 +150418,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151060,7 +150441,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151076,7 +150458,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151087,12 +150470,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint64" }, "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151108,7 +150493,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151119,12 +150505,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151140,7 +150528,8 @@ "arguments": [ { "name": "contact_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151151,7 +150540,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" } }, { @@ -151329,7 +150719,8 @@ }, { "name": "collision_mask", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "collide_with_bodies", @@ -151356,7 +150747,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -151365,11 +150757,13 @@ }, { "name": "canvas_instance_id", - "type": "int" + "type": "int", + "meta": "uint64" }, { "name": "collision_mask", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "collide_with_bodies", @@ -151385,7 +150779,8 @@ }, { "name": "max_results", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151396,7 +150791,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -151413,11 +150809,13 @@ }, { "name": "margin", - "type": "float" + "type": "float", + "meta": "float" }, { "name": "collision_mask", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "collide_with_bodies", @@ -151433,7 +150831,8 @@ }, { "name": "max_results", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151461,11 +150860,13 @@ }, { "name": "margin", - "type": "float" + "type": "float", + "meta": "float" }, { "name": "collision_mask", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "collide_with_bodies", @@ -151509,11 +150910,13 @@ }, { "name": "margin", - "type": "float" + "type": "float", + "meta": "float" }, { "name": "collision_mask", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "collide_with_bodies", @@ -151529,7 +150932,8 @@ }, { "name": "max_results", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "result_count", @@ -151561,11 +150965,13 @@ }, { "name": "margin", - "type": "float" + "type": "float", + "meta": "float" }, { "name": "collision_mask", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "collide_with_bodies", @@ -151756,7 +151162,8 @@ }, { "name": "collision_mask", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "collide_with_bodies", @@ -151787,7 +151194,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -151796,7 +151204,8 @@ }, { "name": "collision_mask", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "collide_with_bodies", @@ -151812,7 +151221,8 @@ }, { "name": "max_results", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151823,7 +151233,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -151840,11 +151251,13 @@ }, { "name": "margin", - "type": "float" + "type": "float", + "meta": "float" }, { "name": "collision_mask", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "collide_with_bodies", @@ -151860,7 +151273,8 @@ }, { "name": "max_results", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -151888,11 +151302,13 @@ }, { "name": "margin", - "type": "float" + "type": "float", + "meta": "float" }, { "name": "collision_mask", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "collide_with_bodies", @@ -151940,11 +151356,13 @@ }, { "name": "margin", - "type": "float" + "type": "float", + "meta": "float" }, { "name": "collision_mask", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "collide_with_bodies", @@ -151960,7 +151378,8 @@ }, { "name": "max_results", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "result_count", @@ -151992,11 +151411,13 @@ }, { "name": "margin", - "type": "float" + "type": "float", + "meta": "float" }, { "name": "collision_mask", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "collide_with_bodies", @@ -155815,7 +155236,8 @@ }, { "name": "bias", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -155858,7 +155280,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -155907,7 +155330,8 @@ }, { "name": "result_max", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "result_count", @@ -155975,7 +155399,8 @@ }, { "name": "value", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -155986,7 +155411,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -156028,7 +155454,8 @@ }, { "name": "max_contacts", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -156055,7 +155482,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -156145,7 +155573,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "shape", @@ -156166,7 +155595,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "transform", @@ -156187,7 +155617,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "disabled", @@ -156202,7 +155633,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -156227,7 +155659,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -156247,7 +155680,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -156264,7 +155698,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -156294,7 +155729,8 @@ }, { "name": "id", - "type": "int" + "type": "int", + "meta": "uint64" } ] }, @@ -156305,7 +155741,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint64" }, "arguments": [ { @@ -156327,7 +155764,8 @@ }, { "name": "id", - "type": "int" + "type": "int", + "meta": "uint64" } ] }, @@ -156338,7 +155776,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint64" }, "arguments": [ { @@ -156434,7 +155873,8 @@ }, { "name": "layer", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -156445,7 +155885,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { @@ -156467,7 +155908,8 @@ }, { "name": "mask", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -156478,7 +155920,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { @@ -156669,7 +156112,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "shape", @@ -156690,7 +156134,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "transform", @@ -156705,7 +156150,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -156730,7 +156176,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -156750,7 +156197,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -156767,7 +156215,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "disabled", @@ -156788,7 +156237,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "enable", @@ -156796,7 +156246,8 @@ }, { "name": "margin", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -156813,7 +156264,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -156843,7 +156295,8 @@ }, { "name": "id", - "type": "int" + "type": "int", + "meta": "uint64" } ] }, @@ -156854,7 +156307,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint64" }, "arguments": [ { @@ -156876,7 +156330,8 @@ }, { "name": "id", - "type": "int" + "type": "int", + "meta": "uint64" } ] }, @@ -156887,7 +156342,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint64" }, "arguments": [ { @@ -156942,7 +156398,8 @@ }, { "name": "layer", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -156953,7 +156410,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { @@ -156975,7 +156433,8 @@ }, { "name": "mask", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -156986,7 +156445,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { @@ -157008,7 +156468,8 @@ }, { "name": "priority", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -157019,7 +156480,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -157153,7 +156615,8 @@ }, { "name": "impulse", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -157229,7 +156692,8 @@ }, { "name": "torque", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -157284,7 +156748,8 @@ }, { "name": "torque", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -157334,7 +156799,8 @@ }, { "name": "torque", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -157345,7 +156811,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -157434,7 +156901,8 @@ }, { "name": "amount", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -157445,7 +156913,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -157467,7 +156936,8 @@ }, { "name": "threshold", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -157478,7 +156948,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -157574,7 +157045,8 @@ }, { "name": "body_shape", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "shape", @@ -157594,7 +157066,8 @@ }, { "name": "result_max", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "result_count", @@ -157659,7 +157132,8 @@ }, { "name": "margin", - "type": "float" + "type": "float", + "meta": "float" }, { "name": "collide_separation_ray", @@ -157715,7 +157189,8 @@ }, { "name": "value", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -157726,7 +157201,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -157876,7 +157352,8 @@ }, { "name": "value", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -157887,7 +157364,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -157917,7 +157395,8 @@ }, { "name": "value", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -157928,7 +157407,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -157999,7 +157479,8 @@ "arguments": [ { "name": "step", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -158048,7 +157529,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -161507,7 +160989,8 @@ }, { "name": "bias", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -161524,7 +161007,8 @@ }, { "name": "margin", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -161535,7 +161019,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -161583,7 +161068,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -161652,7 +161138,8 @@ }, { "name": "value", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -161663,7 +161150,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -161705,7 +161193,8 @@ }, { "name": "max_contacts", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -161732,7 +161221,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -161822,7 +161312,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "shape", @@ -161843,7 +161334,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "transform", @@ -161864,7 +161356,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "disabled", @@ -161879,7 +161372,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -161904,7 +161398,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -161924,7 +161419,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -161941,7 +161437,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -161971,7 +161468,8 @@ }, { "name": "id", - "type": "int" + "type": "int", + "meta": "uint64" } ] }, @@ -161982,7 +161480,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint64" }, "arguments": [ { @@ -162078,7 +161577,8 @@ }, { "name": "layer", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -162089,7 +161589,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { @@ -162111,7 +161612,8 @@ }, { "name": "mask", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -162122,7 +161624,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { @@ -162313,7 +161816,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "shape", @@ -162334,7 +161838,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "transform", @@ -162355,7 +161860,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "disabled", @@ -162370,7 +161876,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -162395,7 +161902,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -162415,7 +161923,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -162432,7 +161941,8 @@ }, { "name": "shape_idx", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -162462,7 +161972,8 @@ }, { "name": "id", - "type": "int" + "type": "int", + "meta": "uint64" } ] }, @@ -162473,7 +161984,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint64" }, "arguments": [ { @@ -162528,7 +162040,8 @@ }, { "name": "layer", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -162539,7 +162052,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { @@ -162561,7 +162075,8 @@ }, { "name": "mask", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -162572,7 +162087,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { @@ -162594,7 +162110,8 @@ }, { "name": "priority", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -162605,7 +162122,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -162627,7 +162145,8 @@ }, { "name": "flags", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -162638,7 +162157,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { @@ -163094,7 +162614,8 @@ }, { "name": "amount", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -163105,7 +162626,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -163127,7 +162649,8 @@ }, { "name": "threshold", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -163138,7 +162661,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -163259,11 +162783,13 @@ }, { "name": "margin", - "type": "float" + "type": "float", + "meta": "float" }, { "name": "max_collisions", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "collide_separation_ray", @@ -163381,7 +162907,8 @@ }, { "name": "layer", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -163392,7 +162919,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { @@ -163414,7 +162942,8 @@ }, { "name": "mask", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -163425,7 +162954,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" }, "arguments": [ { @@ -163555,7 +163085,8 @@ }, { "name": "simulation_precision", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -163566,7 +163097,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -163588,7 +163120,8 @@ }, { "name": "total_mass", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -163599,7 +163132,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -163621,7 +163155,8 @@ }, { "name": "linear_stiffness", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -163632,7 +163167,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -163654,7 +163190,8 @@ }, { "name": "pressure_coefficient", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -163665,7 +163202,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -163687,7 +163225,8 @@ }, { "name": "damping_coefficient", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -163698,7 +163237,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -163720,7 +163260,8 @@ }, { "name": "drag_coefficient", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -163731,7 +163272,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -163786,7 +163328,8 @@ }, { "name": "point_index", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "global_position", @@ -163810,7 +163353,8 @@ }, { "name": "point_index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -163840,7 +163384,8 @@ }, { "name": "point_index", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "pin", @@ -163864,7 +163409,8 @@ }, { "name": "point_index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -163937,7 +163483,8 @@ }, { "name": "value", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -163948,7 +163495,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -164110,7 +163658,8 @@ }, { "name": "value", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -164121,7 +163670,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -164221,7 +163771,8 @@ }, { "name": "value", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -164232,7 +163783,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -164291,7 +163843,8 @@ }, { "name": "value", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -164302,7 +163855,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -164365,7 +163919,8 @@ }, { "name": "value", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -164376,7 +163931,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "float" }, "arguments": [ { @@ -164471,7 +164027,8 @@ }, { "name": "priority", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -164482,7 +164039,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -164566,7 +164124,8 @@ "arguments": [ { "name": "step", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -164615,7 +164174,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -164723,7 +164283,8 @@ "arguments": [ { "name": "vertex_id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "vertices", @@ -164740,7 +164301,8 @@ "arguments": [ { "name": "vertex_id", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "normals", @@ -174496,7 +174058,8 @@ "arguments": [ { "name": "new_value", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -192828,7 +192391,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -192864,7 +192428,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -192933,7 +192498,8 @@ }, { "name": "cache_mode", - "type": "int" + "type": "int", + "meta": "int32" } ] } @@ -192953,7 +192519,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -192966,7 +192533,8 @@ }, { "name": "flags", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -192986,7 +192554,8 @@ }, { "name": "uid", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -200633,7 +200202,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -201083,7 +200653,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -201136,11 +200707,13 @@ }, { "name": "line", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "column", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -201222,11 +200795,13 @@ }, { "name": "from_line", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "to_line", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -201308,7 +200883,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -201318,12 +200894,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { "name": "level", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -201339,7 +200917,8 @@ "arguments": [ { "name": "level", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -201355,15 +200934,18 @@ "arguments": [ { "name": "level", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "max_subitems", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "max_depth", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -201379,15 +200961,18 @@ "arguments": [ { "name": "level", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "max_subitems", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "max_depth", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -201403,7 +200988,8 @@ "arguments": [ { "name": "level", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -201419,11 +201005,13 @@ "arguments": [ { "name": "max_subitems", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "max_depth", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -201439,7 +201027,8 @@ "arguments": [ { "name": "level", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "expression", @@ -201447,11 +201036,13 @@ }, { "name": "max_subitems", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "max_depth", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -201550,7 +201141,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -201559,7 +201151,8 @@ }, { "name": "info_max", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -201570,7 +201163,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { @@ -201579,7 +201173,8 @@ }, { "name": "info_max", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -202096,9 +201691,9 @@ "is_vararg": false, "is_static": false, "is_virtual": false, - "hash": 166280745, + "hash": 2240911060, "return_value": { - "type": "enum::Error" + "type": "bool" } }, { @@ -205341,7 +204936,8 @@ "arguments": [ { "name": "delta", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -210999,6 +210595,10 @@ { "name": "ALPHA_CUT_OPAQUE_PREPASS", "value": 2 + }, + { + "name": "ALPHA_CUT_HASH", + "value": 3 } ] } @@ -211268,6 +210868,60 @@ "type": "enum::SpriteBase3D.AlphaCutMode" } }, + { + "name": "set_alpha_scissor_threshold", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "threshold", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_alpha_scissor_threshold", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, + { + "name": "set_alpha_hash_scale", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 373806689, + "arguments": [ + { + "name": "threshold", + "type": "float", + "meta": "float" + } + ] + }, + { + "name": "get_alpha_hash_scale", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1740695150, + "return_value": { + "type": "float", + "meta": "float" + } + }, { "name": "set_billboard_mode", "is_const": false, @@ -211431,6 +211085,18 @@ "setter": "set_alpha_cut_mode", "getter": "get_alpha_cut_mode" }, + { + "type": "float", + "name": "alpha_scissor_threshold", + "setter": "set_alpha_scissor_threshold", + "getter": "get_alpha_scissor_threshold" + }, + { + "type": "float", + "name": "alpha_hash_scale", + "setter": "set_alpha_hash_scale", + "getter": "get_alpha_hash_scale" + }, { "type": "int", "name": "texture_filter", @@ -212623,7 +212289,8 @@ }, { "name": "r_bytes", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "r_received", @@ -212647,7 +212314,8 @@ }, { "name": "r_bytes", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "r_received", @@ -212671,7 +212339,8 @@ }, { "name": "p_bytes", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "r_sent", @@ -212695,7 +212364,8 @@ }, { "name": "p_bytes", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "r_sent", @@ -212710,7 +212380,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } } ] @@ -215392,7 +215063,8 @@ "arguments": [ { "name": "line", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -217721,11 +217393,13 @@ "arguments": [ { "name": "unicode_char", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "caret_index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -217738,7 +217412,8 @@ "arguments": [ { "name": "caret_index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -217751,7 +217426,8 @@ "arguments": [ { "name": "caret_index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -217764,7 +217440,8 @@ "arguments": [ { "name": "caret_index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -217777,7 +217454,8 @@ "arguments": [ { "name": "caret_index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -217790,7 +217468,8 @@ "arguments": [ { "name": "caret_index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -227970,7 +227649,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" } }, { @@ -228077,7 +227757,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -228098,7 +227779,8 @@ "arguments": [ { "name": "tag", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -228146,7 +227828,8 @@ }, { "name": "data_size", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -228163,7 +227846,8 @@ }, { "name": "face_index", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -228174,7 +227858,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -228190,7 +227875,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -228311,7 +227997,8 @@ }, { "name": "weight", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -228322,7 +228009,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -228344,7 +228032,8 @@ }, { "name": "stretch", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -228355,7 +228044,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -228476,7 +228166,8 @@ }, { "name": "msdf_pixel_range", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -228487,7 +228178,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -228509,7 +228201,8 @@ }, { "name": "msdf_size", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -228520,7 +228213,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -228542,7 +228236,8 @@ }, { "name": "fixed_size", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -228553,7 +228248,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -228707,7 +228403,8 @@ }, { "name": "strength", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -228718,7 +228415,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -228806,7 +228504,8 @@ }, { "name": "oversampling", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -228817,7 +228516,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -228885,11 +228585,13 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "ascent", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -228900,7 +228602,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -228909,7 +228612,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -228926,11 +228630,13 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "descent", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -228941,7 +228647,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -228950,7 +228657,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -228967,11 +228675,13 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "underline_position", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -228982,7 +228692,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -228991,7 +228702,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229008,11 +228720,13 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "underline_thickness", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -229023,7 +228737,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -229032,7 +228747,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229049,11 +228765,13 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "scale", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -229064,7 +228782,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -229073,7 +228792,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229084,7 +228804,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -229131,7 +228852,8 @@ }, { "name": "texture_index", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229152,7 +228874,8 @@ }, { "name": "texture_index", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "image", @@ -229180,7 +228903,8 @@ }, { "name": "texture_index", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229201,7 +228925,8 @@ }, { "name": "texture_index", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "offset", @@ -229229,7 +228954,8 @@ }, { "name": "texture_index", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229287,7 +229013,8 @@ }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229307,11 +229034,13 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229328,11 +229057,13 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "advance", @@ -229360,7 +229091,8 @@ }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229381,7 +229113,8 @@ }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "offset", @@ -229409,7 +229142,8 @@ }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229430,7 +229164,8 @@ }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "gl_size", @@ -229458,7 +229193,8 @@ }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229479,7 +229215,8 @@ }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "uv_rect", @@ -229494,7 +229231,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -229507,7 +229245,8 @@ }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229528,11 +229267,13 @@ }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "texture_idx", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229556,7 +229297,8 @@ }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229580,7 +229322,8 @@ }, { "name": "glyph", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229600,11 +229343,13 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "index", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229624,7 +229369,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229641,7 +229387,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229658,7 +229405,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "glyph_pair", @@ -229679,7 +229427,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "glyph_pair", @@ -229707,7 +229456,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "glyph_pair", @@ -229722,7 +229472,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -229731,15 +229482,18 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "char", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "variation_selector", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229759,7 +229513,8 @@ }, { "name": "char", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229796,11 +229551,13 @@ }, { "name": "start", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "end", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229821,7 +229578,8 @@ }, { "name": "index", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -229842,7 +229600,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "pos", @@ -229850,7 +229609,8 @@ }, { "name": "index", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "color", @@ -229875,11 +229635,13 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "outline_size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "pos", @@ -229887,7 +229649,8 @@ }, { "name": "index", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "color", @@ -230155,7 +229918,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" } }, { @@ -230167,7 +229931,8 @@ "arguments": [ { "name": "oversampling", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -230183,11 +229948,13 @@ "arguments": [ { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "index", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -230204,7 +229971,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "pos", @@ -230212,7 +229980,8 @@ }, { "name": "index", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "color", @@ -230468,7 +230237,8 @@ }, { "name": "value", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -230479,7 +230249,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -230516,7 +230287,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "opentype_features", @@ -230560,11 +230332,13 @@ }, { "name": "length", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "baseline", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -230596,7 +230370,8 @@ }, { "name": "baseline", - "type": "float" + "type": "float", + "meta": "float" } ] }, @@ -230607,7 +230382,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -230632,7 +230408,8 @@ }, { "name": "index", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -230649,7 +230426,8 @@ }, { "name": "index", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "fonts", @@ -230657,7 +230435,8 @@ }, { "name": "size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "opentype_features", @@ -230681,11 +230460,13 @@ }, { "name": "start", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "length", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -230712,7 +230493,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -230721,7 +230503,8 @@ }, { "name": "width", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "jst_flags", @@ -230736,7 +230519,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -230852,7 +230636,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -230897,7 +230682,8 @@ }, { "name": "start", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "once", @@ -230925,11 +230711,13 @@ }, { "name": "width", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "start", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "break_flags", @@ -230964,7 +230752,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -230980,7 +230769,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -230996,7 +230786,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -231034,7 +230825,8 @@ }, { "name": "width", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "trim_flags", @@ -231101,7 +230893,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -231117,7 +230910,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -231133,7 +230927,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -231149,7 +230944,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -231165,7 +230961,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "float" + "type": "float", + "meta": "double" }, "arguments": [ { @@ -231181,7 +230978,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -231190,11 +230988,13 @@ }, { "name": "start", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "end", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -231211,7 +231011,8 @@ }, { "name": "position", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "caret", @@ -231235,11 +231036,13 @@ }, { "name": "start", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "end", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -231250,7 +231053,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -231259,7 +231063,8 @@ }, { "name": "coord", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -231270,7 +231075,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -231279,7 +231085,8 @@ }, { "name": "coord", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -231304,11 +231111,13 @@ }, { "name": "clip_l", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "clip_r", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "color", @@ -231337,15 +231146,18 @@ }, { "name": "clip_l", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "clip_r", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "outline_size", - "type": "int" + "type": "int", + "meta": "int64" }, { "name": "color", @@ -231369,7 +231181,8 @@ }, { "name": "pos", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -231380,7 +231193,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -231389,7 +231203,8 @@ }, { "name": "pos", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -231400,7 +231215,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -231409,7 +231225,8 @@ }, { "name": "pos", - "type": "int" + "type": "int", + "meta": "int64" } ] }, @@ -231521,7 +231338,8 @@ }, { "name": "chars_per_line", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -231532,7 +231350,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int64" }, "arguments": [ { @@ -231634,6 +231453,13 @@ } ] }, + { + "name": "TextServerFallback", + "is_refcounted": true, + "is_instantiable": true, + "inherits": "TextServerExtension", + "api_type": "core" + }, { "name": "TextServerManager", "is_refcounted": false, @@ -231795,7 +231621,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -231805,7 +231632,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -231820,11 +231648,13 @@ "arguments": [ { "name": "x", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "y", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -232136,7 +231966,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -232146,7 +231977,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -232156,7 +231988,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -232662,7 +232495,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" } }, { @@ -232672,7 +232506,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -232682,7 +232517,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -232692,7 +232528,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -232717,7 +232554,8 @@ "arguments": [ { "name": "layer_index", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -235223,7 +235061,7 @@ } }, { - "name": "set_texture_offset", + "name": "set_texture_origin", "is_const": false, "is_vararg": false, "is_static": false, @@ -235231,13 +235069,13 @@ "hash": 1130785943, "arguments": [ { - "name": "texture_offset", + "name": "texture_origin", "type": "Vector2i" } ] }, { - "name": "get_texture_offset", + "name": "get_texture_origin", "is_const": true, "is_vararg": false, "is_static": false, @@ -235910,9 +235748,9 @@ }, { "type": "Vector2i", - "name": "texture_offset", - "setter": "set_texture_offset", - "getter": "get_texture_offset" + "name": "texture_origin", + "setter": "set_texture_origin", + "getter": "get_texture_origin" }, { "type": "Color", @@ -235997,7 +235835,8 @@ "arguments": [ { "name": "layer", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "coords", @@ -236014,7 +235853,8 @@ "arguments": [ { "name": "layer", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "coords", @@ -238282,6 +238122,53 @@ } ] }, + { + "name": "set_navigation_layer_layer_value", + "is_const": false, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 1383440665, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "layer_number", + "type": "int", + "meta": "int32" + }, + { + "name": "value", + "type": "bool" + } + ] + }, + { + "name": "get_navigation_layer_layer_value", + "is_const": true, + "is_vararg": false, + "is_static": false, + "is_virtual": false, + "hash": 2522259332, + "return_value": { + "type": "bool" + }, + "arguments": [ + { + "name": "layer_index", + "type": "int", + "meta": "int32" + }, + { + "name": "layer_number", + "type": "int", + "meta": "int32" + } + ] + }, { "name": "get_custom_data_layers_count", "is_const": true, @@ -241100,7 +240987,8 @@ }, { "name": "n", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "context", @@ -252129,7 +252017,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -252139,7 +252028,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -252149,12 +252039,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { "name": "port", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -252170,7 +252062,8 @@ "arguments": [ { "name": "port", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -252181,7 +252074,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -252191,12 +252085,14 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" }, "arguments": [ { "name": "port", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -252212,7 +252108,8 @@ "arguments": [ { "name": "port", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -258109,7 +258006,8 @@ }, { "name": "p_buffer_size", - "type": "int" + "type": "int", + "meta": "int32" } ] }, @@ -258120,7 +258018,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -258130,7 +258029,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -258220,7 +258120,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -258230,7 +258131,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -258240,7 +258142,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { @@ -258270,7 +258173,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } } ] @@ -258892,7 +258796,8 @@ }, { "name": "p_sdp_mline_index", - "type": "int" + "type": "int", + "meta": "int32" }, { "name": "p_sdp_name", @@ -263470,7 +263375,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" } }, { @@ -263523,7 +263429,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" } }, { @@ -263538,7 +263445,8 @@ "arguments": [ { "name": "mode", - "type": "int" + "type": "int", + "meta": "uint32" } ] }, @@ -263569,7 +263477,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" } }, { @@ -263594,7 +263503,8 @@ "arguments": [ { "name": "view", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "cam_transform", @@ -263614,19 +263524,23 @@ "arguments": [ { "name": "view", - "type": "int" + "type": "int", + "meta": "uint32" }, { "name": "aspect", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "z_near", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "z_far", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -263727,7 +263641,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "uint32" } }, { @@ -263747,19 +263662,23 @@ }, { "name": "frequency", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "amplitude", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "duration_sec", - "type": "float" + "type": "float", + "meta": "double" }, { "name": "delay_sec", - "type": "float" + "type": "float", + "meta": "double" } ] }, @@ -263793,7 +263712,8 @@ "is_vararg": false, "is_virtual": true, "return_value": { - "type": "int" + "type": "int", + "meta": "int32" } }, { diff --git a/gdextension/gdextension_interface.h b/gdextension/gdextension_interface.h index 6e5dee82..7f8f7374 100644 --- a/gdextension/gdextension_interface.h +++ b/gdextension/gdextension_interface.h @@ -551,6 +551,7 @@ typedef struct { GDExtensionVariantPtr (*array_operator_index)(GDExtensionTypePtr p_self, GDExtensionInt p_index); // p_self should be an Array ptr GDExtensionVariantPtr (*array_operator_index_const)(GDExtensionConstTypePtr p_self, GDExtensionInt p_index); // p_self should be an Array ptr + void (*array_set_typed)(GDExtensionTypePtr p_self, uint32_t p_type, GDExtensionConstStringNamePtr p_class_name, GDExtensionConstVariantPtr p_script); // p_self should be an Array ptr /* Dictionary functions */ diff --git a/src/variant/packed_arrays.cpp b/src/variant/packed_arrays.cpp index 652840b8..5f35abd2 100644 --- a/src/variant/packed_arrays.cpp +++ b/src/variant/packed_arrays.cpp @@ -208,6 +208,10 @@ Variant &Array::operator[](int p_index) { return *var; } +void Array::set_typed(uint32_t p_type, const StringName &p_class_name, const Variant &p_script) { + internal::gde_interface->array_set_typed((GDExtensionTypePtr *)this, p_type, (GDExtensionConstStringNamePtr)&p_class_name, (GDExtensionConstVariantPtr)&p_script); +} + const Variant &Dictionary::operator[](const Variant &p_key) const { const Variant *var = (const Variant *)internal::gde_interface->dictionary_operator_index_const((GDExtensionTypePtr *)this, (GDExtensionVariantPtr)&p_key); return *var; diff --git a/test/demo/main.gd b/test/demo/main.gd index 7ef3ace0..85935829 100644 --- a/test/demo/main.gd +++ b/test/demo/main.gd @@ -57,9 +57,6 @@ func _ready(): prints("String += operator") prints(" test string +=", $Example.test_string_ops()) - prints("WorkerThreadPool") - prints(" test worker_thread_pool", $Example.test_workpool_ops()) - prints("PackedArray iterators") prints(" test packed array iterators", $Example.test_vector_ops())